summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/chelsio/Kconfig
diff options
context:
space:
mode:
authorAnish Bhatt <anish@chelsio.com>2014-10-14 20:07:22 -0700
committerDavid S. Miller <davem@davemloft.net>2014-10-15 00:28:58 -0400
commit1bb60376cda108306818365b186450f154ede5f2 (patch)
treef33735b1d4b06d404cd7d429860e886f37cb6db1 /drivers/net/ethernet/chelsio/Kconfig
parent587ddfe2d212019de7c921d9c010789828893f86 (diff)
downloadlinux-1bb60376cda108306818365b186450f154ede5f2.tar.gz
linux-1bb60376cda108306818365b186450f154ede5f2.tar.bz2
linux-1bb60376cda108306818365b186450f154ede5f2.zip
cxgb4 : Fix build failure in cxgb4 when ipv6 is disabled/not in-built
cxgb4 ipv6 does not guard against ipv6 being disabled, or the standard ipv6 module vs inbuilt tri-state issue. This was fixed for cxgb4i & iw_cxgb4 but missed for cxgb4. Signed-off-by: Anish Bhatt <anish@chelsio.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/chelsio/Kconfig')
-rw-r--r--drivers/net/ethernet/chelsio/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/chelsio/Kconfig b/drivers/net/ethernet/chelsio/Kconfig
index c3ce9df0041a..ac6473f75eb9 100644
--- a/drivers/net/ethernet/chelsio/Kconfig
+++ b/drivers/net/ethernet/chelsio/Kconfig
@@ -68,7 +68,7 @@ config CHELSIO_T3
config CHELSIO_T4
tristate "Chelsio Communications T4/T5 Ethernet support"
- depends on PCI
+ depends on PCI && (IPV6 || IPV6=n)
select FW_LOADER
select MDIO
---help---