diff options
author | Anish Bhatt <anish@chelsio.com> | 2014-10-15 07:07:22 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-10-15 08:28:58 +0400 |
commit | 1bb60376cda108306818365b186450f154ede5f2 (patch) | |
tree | f33735b1d4b06d404cd7d429860e886f37cb6db1 /drivers/net/ethernet/chelsio/Kconfig | |
parent | 587ddfe2d212019de7c921d9c010789828893f86 (diff) | |
download | linux-1bb60376cda108306818365b186450f154ede5f2.tar.xz |
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/Kconfig | 2 |
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--- |