Kconfig 1.0 KB

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