Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # Microchip network device configuration
  3. #
  4. config NET_VENDOR_MICROCHIP
  5. bool "Microchip devices"
  6. default y
  7. depends on SPI
  8. ---help---
  9. If you have a network (Ethernet) card belonging to this class, say Y.
  10. Note that the answer to this question doesn't directly affect the
  11. kernel: saying N will just cause the configurator to skip all
  12. the questions about Microchip cards. If you say Y, you will be asked
  13. for your specific card in the following questions.
  14. if NET_VENDOR_MICROCHIP
  15. config ENC28J60
  16. tristate "ENC28J60 support"
  17. depends on SPI
  18. select CRC32
  19. ---help---
  20. Support for the Microchip EN28J60 ethernet chip.
  21. To compile this driver as a module, choose M here. The module will be
  22. called enc28j60.
  23. config ENC28J60_WRITEVERIFY
  24. bool "Enable write verify"
  25. depends on ENC28J60
  26. ---help---
  27. Enable the verify after the buffer write useful for debugging purpose.
  28. If unsure, say N.
  29. config ENCX24J600
  30. tristate "ENCX24J600 support"
  31. depends on SPI
  32. ---help---
  33. Support for the Microchip ENC424J600/624J600 ethernet chip.
  34. To compile this driver as a module, choose M here. The module will be
  35. called encx24j600.
  36. endif # NET_VENDOR_MICROCHIP