diff options
author | YueHaibing <yuehaibing@huawei.com> | 2019-07-24 21:01:26 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-07-24 14:12:40 -0700 |
commit | 2ec0a8909189cb801ded3428d66cdc1ea7e4578b (patch) | |
tree | 0d31d54491432447485c8a3bc54bbbc6e5409938 | |
parent | ed72a9bb9af06c9eb06ff2e8640faac44f8da94a (diff) | |
download | linux-2ec0a8909189cb801ded3428d66cdc1ea7e4578b.tar.gz linux-2ec0a8909189cb801ded3428d66cdc1ea7e4578b.tar.bz2 linux-2ec0a8909189cb801ded3428d66cdc1ea7e4578b.zip |
qlge: Fix build error without CONFIG_ETHERNET
Now if CONFIG_ETHERNET is not set, QLGE driver
building fails:
drivers/staging/qlge/qlge_main.o: In function `qlge_remove':
drivers/staging/qlge/qlge_main.c:4831: undefined reference to `unregister_netdev'
Reported-by: Hulk Robot <hulkci@huawei.com>
Fixes: 955315b0dc8c ("qlge: Move drivers/net/ethernet/qlogic/qlge/ to drivers/staging/qlge/")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/staging/qlge/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/qlge/Kconfig b/drivers/staging/qlge/Kconfig index ae9ed2c5300b..a3cb25a3ab80 100644 --- a/drivers/staging/qlge/Kconfig +++ b/drivers/staging/qlge/Kconfig @@ -2,7 +2,7 @@ config QLGE tristate "QLogic QLGE 10Gb Ethernet Driver Support" - depends on PCI + depends on ETHERNET && PCI help This driver supports QLogic ISP8XXX 10Gb Ethernet cards. |