Skip to content

Commit

Permalink
[ARM] pxa: rename macro from pxa9xx to pxa93x
Browse files Browse the repository at this point in the history
Because original macro can only judge whether current CPU is pxa93x,
rename the macro to correct name.

Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
  • Loading branch information
Haojian Zhuang authored and Eric Miao committed Dec 1, 2009
1 parent bf293ae commit 61333c6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions arch/arm/mach-pxa/include/mach/hardware.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@
*
* PXA935 A0 0x56056931 0x1E653013
* PXA935 B0 0x56056936 0x6E653013
* PXA935 B1 0x56056938 0x8E653013
*/
#ifdef CONFIG_PXA25x
#define __cpu_is_pxa210(id) \
Expand Down Expand Up @@ -283,7 +284,7 @@
_id == 0x3; \
})

#define __cpu_is_pxa9xx(id) \
#define __cpu_is_pxa93x(id) \
({ \
unsigned int _id = (id) >> 4 & 0xfff; \
_id == 0x683 || _id == 0x693; \
Expand All @@ -299,9 +300,9 @@
__cpu_is_pxa3xx(read_cpuid_id()); \
})

#define cpu_is_pxa9xx() \
#define cpu_is_pxa93x() \
({ \
__cpu_is_pxa9xx(read_cpuid_id()); \
__cpu_is_pxa93x(read_cpuid_id()); \
})
/*
* return current memory and LCD clock frequency in units of 10kHz
Expand Down

0 comments on commit 61333c6

Please sign in to comment.