diff options
author | Ben Dooks <ben.dooks@codethink.co.uk> | 2016-06-08 18:26:17 +0100 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2016-06-12 19:48:09 +0800 |
commit | ba4d86a64d9e7b904ef6ba181200712f33978a97 (patch) | |
tree | 890d15bee93f7d17c29bd23474cd644a3fb7d3bd /arch/arm | |
parent | 7bb84d1e66ac2130f7228b528f402ed8878fa82c (diff) |
ARM: imx: fix missing include of common.h
Fix the following warning by including ../common.h to provide
the protoype for mxc_register_gpio() :
arch/arm/mach-imx/devices/platform-gpio-mxc.c:11:24: warning: symbol 'mxc_register_gpio' 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')
-rw-r--r-- | arch/arm/mach-imx/devices/platform-gpio-mxc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/devices/platform-gpio-mxc.c b/arch/arm/mach-imx/devices/platform-gpio-mxc.c index 26483fa94b75..cd1fe69d8807 100644 --- a/arch/arm/mach-imx/devices/platform-gpio-mxc.c +++ b/arch/arm/mach-imx/devices/platform-gpio-mxc.c @@ -7,6 +7,7 @@ * Free Software Foundation. */ #include "devices-common.h" +#include "../common.h" struct platform_device *__init mxc_register_gpio(char *name, int id, resource_size_t iobase, resource_size_t iosize, int irq, int irq_high) |