This is a note to let you know that I've just added the patch titled
perf: xgene: Include module.h
to the 4.9-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git%3Ba=su...
The filename of the patch is: perf-xgene-include-module.h.patch and it can be found in the queue-4.9 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree, please let stable@vger.kernel.org know about it.
From c0bfc549e96231e0ead4424de6e4933fde819d70 Mon Sep 17 00:00:00 2001
From: Stephen Boyd sboyd@codeaurora.org Date: Wed, 25 Jan 2017 15:46:58 -0800 Subject: perf: xgene: Include module.h
From: Stephen Boyd sboyd@codeaurora.org
commit c0bfc549e96231e0ead4424de6e4933fde819d70 upstream.
I ran into a build error when I disabled CONFIG_ACPI and tried to compile this driver:
drivers/perf/xgene_pmu.c:1242:1: warning: data definition has no type or storage class MODULE_DEVICE_TABLE(of, xgene_pmu_of_match); ^ drivers/perf/xgene_pmu.c:1242:1: error: type defaults to 'int' in declaration of 'MODULE_DEVICE_TABLE' [-Werror=implicit-int]
Include module.h for the MODULE_DEVICE_TABLE macro that's implicitly included through ACPI.
Tested-by: Tai Nguyen ttnguyen@apm.com Signed-off-by: Stephen Boyd sboyd@codeaurora.org Signed-off-by: Will Deacon will.deacon@arm.com Signed-off-by: Greg Kroah-Hartman gregkh@linuxfoundation.org
--- drivers/perf/xgene_pmu.c | 1 + 1 file changed, 1 insertion(+)
--- a/drivers/perf/xgene_pmu.c +++ b/drivers/perf/xgene_pmu.c @@ -25,6 +25,7 @@ #include <linux/interrupt.h> #include <linux/io.h> #include <linux/mfd/syscon.h> +#include <linux/module.h> #include <linux/of_address.h> #include <linux/of_fdt.h> #include <linux/of_irq.h>
Patches currently in stable-queue which might be from sboyd@codeaurora.org are
queue-4.9/clk-fix-a-panic-error-caused-by-accessing-null-pointer.patch queue-4.9/perf-xgene-include-module.h.patch