Kconfig 814 B

1234567891011121314151617181920212223242526272829
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # EZchip network device configuration
  4. #
  5. config NET_VENDOR_EZCHIP
  6. bool "EZchip devices"
  7. default y
  8. ---help---
  9. If you have a network (Ethernet) device 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 EZchip devices. If you say Y, you will be asked for
  13. your specific device in the following questions.
  14. if NET_VENDOR_EZCHIP
  15. config EZCHIP_NPS_MANAGEMENT_ENET
  16. tristate "EZchip NPS management enet support"
  17. depends on OF_IRQ && OF_NET
  18. depends on HAS_IOMEM
  19. ---help---
  20. Simple LAN device for debug or management purposes.
  21. Device supports interrupts for RX and TX(completion).
  22. Device does not have DMA ability.
  23. endif