config_phylib_all_drivers.h 719 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Enable all PHYs
  3. *
  4. * This software may be used and distributed according to the
  5. * terms of the GNU Public License, Version 2, incorporated
  6. * herein by reference.
  7. *
  8. * Copyright 2011 Freescale Semiconductor, Inc.
  9. * author Andy Fleming
  10. *
  11. */
  12. #ifndef _CONFIG_PHYLIB_ALL_H
  13. #define _CONFIG_PHYLIB_ALL_H
  14. #ifdef CONFIG_PHYLIB
  15. #define CONFIG_PHY_VITESSE
  16. #define CONFIG_PHY_MARVELL
  17. #define CONFIG_PHY_BROADCOM
  18. #define CONFIG_PHY_DAVICOM
  19. #define CONFIG_PHY_REALTEK
  20. #define CONFIG_PHY_NATSEMI
  21. #define CONFIG_PHY_LXT
  22. #define CONFIG_PHY_ATHEROS
  23. #define CONFIG_PHY_SMSC
  24. #ifdef CONFIG_PHYLIB_10G
  25. #define CONFIG_PHY_TERANETICS
  26. #endif /* CONFIG_PHYLIB_10G */
  27. #endif /* CONFIG_PHYLIB */
  28. #endif /*_CONFIG_PHYLIB_ALL_H */