Kconfig 888 B

1234567891011121314151617181920212223242526272829303132333435
  1. #
  2. # Asix network device configuration
  3. #
  4. config NET_VENDOR_ASIX
  5. bool "Asix devices"
  6. default y
  7. help
  8. If you have a network (Ethernet, non-USB, not NE2000 compatible)
  9. interface based on a chip from ASIX, say Y.
  10. if NET_VENDOR_ASIX
  11. config SPI_AX88796C
  12. tristate "Asix AX88796C-SPI support"
  13. select PHYLIB
  14. depends on SPI
  15. depends on GPIOLIB
  16. help
  17. Say Y here if you intend to use ASIX AX88796C attached in SPI mode.
  18. config SPI_AX88796C_COMPRESSION
  19. bool "SPI transfer compression"
  20. default n
  21. depends on SPI_AX88796C
  22. help
  23. Say Y here to enable SPI transfer compression. It saves up
  24. to 24 dummy cycles during each transfer which may noticeably
  25. speed up short transfers. This sets the default value that is
  26. inherited by network interfaces during probe. It can be
  27. changed at run time via spi-compression ethtool tunable.
  28. If unsure say N.
  29. endif # NET_VENDOR_ASIX