Skip to content

Commit

Permalink
ARM: mxs/tx28: fix odd include
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Shawn Guo <[email protected]>
  • Loading branch information
pebolle authored and shawnguo2 committed Jun 29, 2012
1 parent cfaf025 commit f1cefa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-mxs/module-tx28.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit f1cefa8

Please sign in to comment.