diff options
| author | Sven Joachim <svenjoac@gmx.de> | 2018-01-26 04:38:01 -0500 |
|---|---|---|
| committer | Kalle Valo <kvalo@codeaurora.org> | 2018-01-26 09:55:34 -0500 |
| commit | a9e6d44ddeccd3522670e641f1ed9b068e746ff7 (patch) | |
| tree | 4c7dd0d1140d574dec08b60e2512876c8faa775f /drivers/ssb | |
| parent | 1e19c4d689dc1e95bafd23ef68fbc0c6b9e05180 (diff) | |
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 <svenjoac@gmx.de>
Reviewed-by: James Hogan <jhogan@kernel.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/ssb')
| -rw-r--r-- | drivers/ssb/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ssb/Kconfig b/drivers/ssb/Kconfig index 71c73766ee22..65af12c3bdb2 100644 --- a/drivers/ssb/Kconfig +++ b/drivers/ssb/Kconfig | |||
| @@ -32,7 +32,7 @@ config SSB_BLOCKIO | |||
| 32 | 32 | ||
| 33 | config SSB_PCIHOST_POSSIBLE | 33 | config SSB_PCIHOST_POSSIBLE |
| 34 | bool | 34 | bool |
| 35 | depends on SSB && (PCI = y || PCI = SSB) && PCI_DRIVERS_LEGACY | 35 | depends on SSB && (PCI = y || PCI = SSB) && (PCI_DRIVERS_LEGACY || !MIPS) |
| 36 | default y | 36 | default y |
| 37 | 37 | ||
| 38 | config SSB_PCIHOST | 38 | config SSB_PCIHOST |
