瀏覽代碼

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>
Paul Bolle 13 年之前
父節點
當前提交
f1cefa855f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/arm/mach-mxs/module-tx28.c

+ 1 - 1
arch/arm/mach-mxs/module-tx28.c

@@ -11,7 +11,7 @@
 #include <linux/gpio.h>
 #include <linux/gpio.h>
 
 
 #include <mach/iomux-mx28.h>
 #include <mach/iomux-mx28.h>
-#include "../devices-mx28.h"
+#include "devices-mx28.h"
 
 
 #include "module-tx28.h"
 #include "module-tx28.h"