[ARM] pxa: rename macro from pxa9xx to pxa93x
authorHaojian Zhuang <haojian.zhuang@gmail.com>
Thu, 5 Nov 2009 02:58:16 +0000 (21:58 -0500)
committerEric Miao <eric.y.miao@gmail.com>
Tue, 1 Dec 2009 01:02:59 +0000 (09:02 +0800)
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>
arch/arm/mach-pxa/include/mach/hardware.h

index aa3d9f7..50f1297 100644 (file)
  *
  *  PXA935     A0      0x56056931      0x1E653013
  *  PXA935     B0      0x56056936      0x6E653013
+ *  PXA935     B1      0x56056938      0x8E653013
  */
 #ifdef CONFIG_PXA25x
 #define __cpu_is_pxa210(id)                            \
                _id == 0x3;                             \
         })
 
-#define __cpu_is_pxa9xx(id)                            \
+#define __cpu_is_pxa93x(id)                            \
        ({                                              \
                unsigned int _id = (id) >> 4 & 0xfff;   \
                _id == 0x683 || _id == 0x693;           \
                __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