From 3fc661a98c8046a27dcf45a63049ee6605ebd364 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Wed, 8 Jun 2016 11:59:37 +0200 Subject: brcm2708: update linux 4.4 patches to latest version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As usual these patches were extracted from the raspberry pi repo: https://github.com/raspberrypi/linux/tree/rpi-4.4.y Also alphabetically order sound-soc kernel packages. Signed-off-by: Álvaro Fernández Rojas --- ...5-clarify-RASPBERRYPI_FIRMWARE-dependency.patch | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 target/linux/brcm2708/patches-4.4/0269-ARM-bcm2835-clarify-RASPBERRYPI_FIRMWARE-dependency.patch (limited to 'target/linux/brcm2708/patches-4.4/0269-ARM-bcm2835-clarify-RASPBERRYPI_FIRMWARE-dependency.patch') diff --git a/target/linux/brcm2708/patches-4.4/0269-ARM-bcm2835-clarify-RASPBERRYPI_FIRMWARE-dependency.patch b/target/linux/brcm2708/patches-4.4/0269-ARM-bcm2835-clarify-RASPBERRYPI_FIRMWARE-dependency.patch new file mode 100644 index 0000000..e1e6240 --- /dev/null +++ b/target/linux/brcm2708/patches-4.4/0269-ARM-bcm2835-clarify-RASPBERRYPI_FIRMWARE-dependency.patch @@ -0,0 +1,36 @@ +From 9cfa49abaf59e6f41da47f37caae6075741ca876 Mon Sep 17 00:00:00 2001 +From: Arnd Bergmann +Date: Thu, 31 Dec 2015 23:39:14 +0100 +Subject: [PATCH 269/381] ARM: bcm2835: clarify RASPBERRYPI_FIRMWARE dependency + +The firmware driver can be a loadable module, but the power domain +can only be built-in, so we get a build error in an allmodconfig +kernel: + +:(.text+0x17e59c): undefined reference to `rpi_firmware_property' +:(.text+0x17e51c): undefined reference to `rpi_firmware_get' +:(.text+0x17e244): undefined reference to `rpi_firmware_property' + +This changes the dependency to only allow the power domain code +to be enabled when the firmware driver is built-in. Other users +of the firmware driver may still be loadable modules and not +everyone needs the power domains, so we don't change the firmware +code. + +Signed-off-by: Arnd Bergmann +(cherry picked from commit 22a5b1ddd83b991b96cb635898e011cce48bf6f8) +--- + drivers/soc/bcm/Kconfig | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/drivers/soc/bcm/Kconfig ++++ b/drivers/soc/bcm/Kconfig +@@ -1,7 +1,7 @@ + config RASPBERRYPI_POWER + bool "Raspberry Pi power domain driver" + depends on ARCH_BCM2835 || COMPILE_TEST +- depends on RASPBERRYPI_FIRMWARE ++ depends on RASPBERRYPI_FIRMWARE=y + select PM_GENERIC_DOMAINS if PM + select PM_GENERIC_DOMAINS_OF if PM + help -- cgit v1.1