From: Paul Bolle Date: Thu, 28 Jun 2012 10:39:05 +0000 (+0200) Subject: ARM: mxs/tx28: fix odd include X-Git-Tag: v3.6-rc1~148^2~3^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f1cefa855f6e7d10dd49724ede771b8f0c2a90e7;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git 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 Signed-off-by: Shawn Guo --- 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 #include -#include "../devices-mx28.h" +#include "devices-mx28.h" #include "module-tx28.h"