summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Robinson <pbrobinson@gmail.com>2015-11-22 10:45:10 +0000
committerPeter Robinson <pbrobinson@gmail.com>2015-11-22 10:45:10 +0000
commit9e788fd4789d452dd43e183f1adb94890f9e73fa (patch)
tree0cbd443e5fc66f04d350502da6fe937f9422793c
parent72eede01607969f88dec17e62d28ca5b47343682 (diff)
downloadkernel-9e788fd4789d452dd43e183f1adb94890f9e73fa.tar.gz
kernel-9e788fd4789d452dd43e183f1adb94890f9e73fa.tar.xz
kernel-9e788fd4789d452dd43e183f1adb94890f9e73fa.zip
Fix sound issue on some ARM devices (tested on Arndale)
-rw-r--r--kernel.spec5
-rw-r--r--mfd-wm8994-Ensure-that-the-whole-MFD-is-built-into-a.patch28
2 files changed, 33 insertions, 0 deletions
diff --git a/kernel.spec b/kernel.spec
index 00b006b17..baf538a24 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -508,6 +508,8 @@ Patch458: ARM-dts-Add-am335x-bonegreen.patch
Patch459: 0001-watchdog-omap_wdt-fix-null-pointer-dereference.patch
+Patch460: mfd-wm8994-Ensure-that-the-whole-MFD-is-built-into-a.patch
+
Patch463: arm-i.MX6-Utilite-device-dtb.patch
Patch466: input-kill-stupid-messages.patch
@@ -2061,6 +2063,9 @@ fi
#
#
%changelog
+* Sun Nov 22 2015 Peter Robinson <pbrobinson@fedoraproject.org>
+- Fix sound issue on some ARM devices (tested on Arndale)
+
* Mon Nov 16 2015 Josh Boyer <jwboyer@fedoraproject.org>
- Fix ipset netfilter issues (rhbz 1279189)
- Add queued 4.3 net stable fixes
diff --git a/mfd-wm8994-Ensure-that-the-whole-MFD-is-built-into-a.patch b/mfd-wm8994-Ensure-that-the-whole-MFD-is-built-into-a.patch
new file mode 100644
index 000000000..dfedd2ab0
--- /dev/null
+++ b/mfd-wm8994-Ensure-that-the-whole-MFD-is-built-into-a.patch
@@ -0,0 +1,28 @@
+From 567a18f57213647e2c31bbdc7f6b8f9991d22fad Mon Sep 17 00:00:00 2001
+From: Peter Robinson <pbrobinson@gmail.com>
+Date: Fri, 13 Nov 2015 19:03:29 +0000
+Subject: [PATCH] mfd: wm8994: Ensure that the whole MFD is built into a single
+ module
+
+Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
+---
+ drivers/mfd/Makefile | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile
+index a59e3fc..4a767ef 100644
+--- a/drivers/mfd/Makefile
++++ b/drivers/mfd/Makefile
+@@ -61,7 +61,8 @@ wm8350-objs := wm8350-core.o wm8350-regmap.o wm8350-gpio.o
+ wm8350-objs += wm8350-irq.o
+ obj-$(CONFIG_MFD_WM8350) += wm8350.o
+ obj-$(CONFIG_MFD_WM8350_I2C) += wm8350-i2c.o
+-obj-$(CONFIG_MFD_WM8994) += wm8994-core.o wm8994-irq.o wm8994-regmap.o
++wm8994-objs := wm8994-core.o wm8994-irq.o wm8994-regmap.o
++obj-$(CONFIG_MFD_WM8994) += wm8994.o
+
+ obj-$(CONFIG_TPS6105X) += tps6105x.o
+ obj-$(CONFIG_TPS65010) += tps65010.o
+--
+2.5.0
+