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