aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx/devices
diff options
context:
space:
mode:
authorBen Dooks <ben.dooks@codethink.co.uk>2016-06-08 18:23:40 +0100
committerShawn Guo <shawnguo@kernel.org>2016-06-12 19:48:09 +0800
commit7bb84d1e66ac2130f7228b528f402ed8878fa82c (patch)
treefc269a22159ba1ec4536ab941a1e4276174b743a /arch/arm/mach-imx/devices
parentARM: imx6: disable deeper idle states when FEC is active w/o HW workaround (diff)
downloadlinux-dev-7bb84d1e66ac2130f7228b528f402ed8878fa82c.tar.xz
linux-dev-7bb84d1e66ac2130f7228b528f402ed8878fa82c.zip
ARM: imx: fix missing includes
Fix the following warnings by adding the include files that define them: arch/arm/mach-imx/devices/devices.c:25:15: warning: symbol 'mxc_aips_bus' was not declared. Should it be static? arch/arm/mach-imx/devices/devices.c:29:15: warning: symbol 'mxc_ahb_bus' was not declared. Should it be static? arch/arm/mach-imx/devices/devices.c:33:12: warning: symbol 'mxc_device_init' was not declared. Should it be static? Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/mach-imx/devices')
-rw-r--r--arch/arm/mach-imx/devices/devices.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/devices/devices.c b/arch/arm/mach-imx/devices/devices.c
index 8eab5440da28..300451727362 100644
--- a/arch/arm/mach-imx/devices/devices.c
+++ b/arch/arm/mach-imx/devices/devices.c
@@ -22,6 +22,9 @@
#include <linux/err.h>
#include <linux/platform_device.h>
+#include "../common.h"
+#include "devices-common.h"
+
struct device mxc_aips_bus = {
.init_name = "mxc_aips",
};