summaryrefslogtreecommitdiff
path: root/libre/linux-libre/0003-ssb-Do-not-disable-PCI-host-on-non-Mips.patch
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-02-13 10:15:08 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-02-13 12:23:48 +0100
commit1ab533cdce918676f5c6387e5140fe6fc3e4d69f (patch)
tree89dc4569f276446b29f60003dfaba738b5973406 /libre/linux-libre/0003-ssb-Do-not-disable-PCI-host-on-non-Mips.patch
parent4463882db5dc2be543f69b84f606facb0d6ae317 (diff)
downloadabslibre-1ab533cdce918676f5c6387e5140fe6fc3e4d69f.tar.gz
abslibre-1ab533cdce918676f5c6387e5140fe6fc3e4d69f.tar.bz2
abslibre-1ab533cdce918676f5c6387e5140fe6fc3e4d69f.zip
libre/linux-libre: updated to 4.15.2_gnu; split armv7h kernel into linux-libre-armv7
Diffstat (limited to 'libre/linux-libre/0003-ssb-Do-not-disable-PCI-host-on-non-Mips.patch')
-rw-r--r--libre/linux-libre/0003-ssb-Do-not-disable-PCI-host-on-non-Mips.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/libre/linux-libre/0003-ssb-Do-not-disable-PCI-host-on-non-Mips.patch b/libre/linux-libre/0003-ssb-Do-not-disable-PCI-host-on-non-Mips.patch
new file mode 100644
index 000000000..f1102e0b9
--- /dev/null
+++ b/libre/linux-libre/0003-ssb-Do-not-disable-PCI-host-on-non-Mips.patch
@@ -0,0 +1,37 @@
+From 1a0e4c170e4622947c0d1d530d63a3241a99b93c Mon Sep 17 00:00:00 2001
+Message-Id: <1a0e4c170e4622947c0d1d530d63a3241a99b93c.1518115547.git.jan.steffens@gmail.com>
+In-Reply-To: <d817891efd179bdb0b5d30fa8aafaeb2a96af76c.1518115547.git.jan.steffens@gmail.com>
+References: <d817891efd179bdb0b5d30fa8aafaeb2a96af76c.1518115547.git.jan.steffens@gmail.com>
+From: Sven Joachim <svenjoac@gmx.de>
+Date: Fri, 26 Jan 2018 10:38:01 +0100
+Subject: [PATCH 3/3] 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>
+---
+ drivers/ssb/Kconfig | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+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
+
+ 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
+--
+2.16.1
+