From: Sven Joachim Date: Fri, 26 Jan 2018 09:38:01 +0000 (+0100) Subject: ssb: Do not disable PCI host on non-Mips X-Git-Tag: v4.16-rc1~14^2~11^2~6^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a9e6d44ddeccd3522670e641f1ed9b068e746ff7;p=thirdparty%2Fkernel%2Flinux.git ssb: Do not disable PCI host on non-Mips After upgrading an old laptop to 4.15-rc9, I found that the eth0 and wlan0 interfaces had disappeared. It turns out that the b43 and b44 drivers require SSB_PCIHOST_POSSIBLE which depends on PCI_DRIVERS_LEGACY, a config option that only exists on Mips. Fixes: 58eae1416b80 ("ssb: Disable PCI host for PCI_DRIVERS_GENERIC") Cc: stable@vger.org Signed-off-by: Sven Joachim Reviewed-by: James Hogan Signed-off-by: Kalle Valo --- diff --git a/drivers/ssb/Kconfig b/drivers/ssb/Kconfig index 71c73766ee22e..65af12c3bdb2d 100644 --- a/drivers/ssb/Kconfig +++ b/drivers/ssb/Kconfig @@ -32,7 +32,7 @@ config SSB_BLOCKIO config SSB_PCIHOST_POSSIBLE bool - depends on SSB && (PCI = y || PCI = SSB) && PCI_DRIVERS_LEGACY + depends on SSB && (PCI = y || PCI = SSB) && (PCI_DRIVERS_LEGACY || !MIPS) default y config SSB_PCIHOST