ARM: mxs/tx28: fix odd include
authorPaul Bolle <pebolle@tiscali.nl>
Thu, 28 Jun 2012 10:39:05 +0000 (12:39 +0200)
committerShawn Guo <shawn.guo@linaro.org>
Fri, 29 Jun 2012 00:57:20 +0000 (08:57 +0800)
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>
arch/arm/mach-mxs/module-tx28.c

index 9a7b08b2a92559caf1028df076040c5e5dc798ae..0f71f82101cc00bcf20e831d8e61dc780f276448 100644 (file)
@@ -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"
 
This page took 0.026332 seconds and 5 git commands to generate.