Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9e833be3 authored by Randy Dunlap's avatar Randy Dunlap Committed by Jeff Garzik
Browse files

cxgb3: fix build error when INET=n



cxgb3 uses lro_* functions and selects INET_LRO, but this doesn't help unless
INET is already enabled, so make the driver depend on INET also.

sge.c:(.text+0x9f09a): undefined reference to `lro_flush_all'
sge.c:(.text+0x9f62f): undefined reference to `lro_receive_skb'
sge.c:(.text+0x9f8a3): undefined reference to `lro_receive_frags'
sge.c:(.text+0x9fbe0): undefined reference to `lro_vlan_hwaccel_receive_skb'
sge.c:(.text+0x9ffcd): undefined reference to `lro_vlan_hwaccel_receive_frags'

Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent dfc2c0a6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2408,7 +2408,7 @@ config CHELSIO_T1_NAPI

config CHELSIO_T3
	tristate "Chelsio Communications T3 10Gb Ethernet support"
	depends on PCI
	depends on PCI && INET
	select FW_LOADER
	select INET_LRO
	help