diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2012-06-28 12:39:05 +0200 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2012-06-29 08:57:20 +0800 |
commit | f1cefa855f6e7d10dd49724ede771b8f0c2a90e7 (patch) | |
tree | 14a6362db8b3fa6c2f4549f9e25cc9a997f8f5fb /arch/arm/mach-mxs/module-tx28.c | |
parent | cfaf025112d3856637ff34a767ef785ef5cf2ca9 (diff) | |
download | op-kernel-dev-f1cefa855f6e7d10dd49724ede771b8f0c2a90e7.zip op-kernel-dev-f1cefa855f6e7d10dd49724ede771b8f0c2a90e7.tar.gz |
ARM: mxs/tx28: fix odd include
arch/arm/mach-mxs/module-tx28.c includes "../devices-mx28.h". That's a
bit odd, because that header can be found in the same directory. This
only works because arch/arm/mach-mxs/include should be in the header
search path for this file. Nevertheless, this file can simply include
"device-mx28.h" (just as the four other files including that header do).
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-mxs/module-tx28.c')
-rw-r--r-- | arch/arm/mach-mxs/module-tx28.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mxs/module-tx28.c b/arch/arm/mach-mxs/module-tx28.c index 9a7b08b..0f71f82 100644 --- a/arch/arm/mach-mxs/module-tx28.c +++ b/arch/arm/mach-mxs/module-tx28.c @@ -11,7 +11,7 @@ #include <linux/gpio.h> #include <mach/iomux-mx28.h> -#include "../devices-mx28.h" +#include "devices-mx28.h" #include "module-tx28.h" |