aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/perf/xgene_pmu.c
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@codeaurora.org>2017-01-25 15:46:58 -0800
committerWill Deacon <will.deacon@arm.com>2017-02-03 18:46:47 +0000
commitc0bfc549e96231e0ead4424de6e4933fde819d70 (patch)
tree19055b569284b79801328506b46ac545a9e948ec /drivers/perf/xgene_pmu.c
parentarm: perf: use builtin_platform_driver (diff)
downloadlinux-dev-c0bfc549e96231e0ead4424de6e4933fde819d70.tar.xz
linux-dev-c0bfc549e96231e0ead4424de6e4933fde819d70.zip
perf: xgene: Include module.h
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>
Diffstat (limited to 'drivers/perf/xgene_pmu.c')
-rw-r--r--drivers/perf/xgene_pmu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/perf/xgene_pmu.c b/drivers/perf/xgene_pmu.c
index a8ac4bcef2c0..35b5289bc5da 100644
--- 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>