9
0
Fork 0

ARM: i.MX23: Fix double include protection

Using __ASM_MACH_IOMUX_H will break once we introduce a
iomux.h which uses exactly this string as double include
protection. Use a SoC specific string instead.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-08-16 12:27:27 +02:00
parent 1081856788
commit e6137a698c
1 changed files with 3 additions and 3 deletions

View File

@ -27,8 +27,8 @@
* ^_____________________ initial output value if enabled as GPIO and configured as output
* ^______________________ Bit keeper present
*/
#ifndef __ASM_MACH_IOMUX_H
#define __ASM_MACH_IOMUX_H
#ifndef __ASM_MACH_IOMUX_MX23_H
#define __ASM_MACH_IOMUX_MX23_H
/* control pad's function */
#define FBIT_SHIFT (3)
@ -422,4 +422,4 @@
#define EMI_DQM0 (FUNC(0) | PORTF(7, 0) | SE | VE | PE)
#define EMI_DQM0_DISABLED (FUNC(3) | PORTF(7, 0) | SE | VE | PE)
#endif /* __ASM_MACH_IOMUX_H */
#endif /* __ASM_MACH_IOMUX_MX23_H */