9
0
Fork 0

ARM i.MX: Add missing cpu_is_mx53()

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2011-07-27 12:15:59 +02:00
parent 9a4abe67ff
commit 5fa7a0e786
1 changed files with 6 additions and 0 deletions

View File

@ -51,5 +51,11 @@ u64 imx_uid(void);
#define cpu_is_mx51() (0)
#endif
#ifdef CONFIG_ARCH_IMX53
#define cpu_is_mx53() (1)
#else
#define cpu_is_mx53() (0)
#endif
#define cpu_is_mx23() (0)
#define cpu_is_mx28() (0)