powerpc: mpc8xx: get rid of the multiple PVR_ values
authorChristophe Leroy <christophe.leroy@c-s.fr>
Fri, 16 Mar 2018 16:20:35 +0000 (17:20 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 6 Apr 2018 20:30:37 +0000 (16:30 -0400)
Avoid hardcoding the PVR values in C since they are defined
in processor.h

At the same time, remove those multiple PVR values for 8xx and
keep only one that we call PVR_8xx

Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
arch/powerpc/cpu/mpc8xx/cpu.c
arch/powerpc/include/asm/processor.h

index 9da73ac..5a81bed 100644 (file)
@@ -42,7 +42,7 @@ static int check_CPU(long clock, uint pvr, uint immr)
 
        /* the highest 16 bits should be 0x0050 for a 860 */
 
-       if ((pvr >> 16) != 0x0050)
+       if (PVR_VER(pvr) != PVR_VER(PVR_8xx))
                return -1;
 
        k = (immr << 16) |
index 57b11b8..6fbe8c4 100644 (file)
  * differentiated by the version number in the Communication Processor
  * Module (CPM).
  */
-#define PVR_821                0x00500000
-#define PVR_823                PVR_821
-#define PVR_850                PVR_821
-#define PVR_860                PVR_821
+#define PVR_8xx                0x00500000
+
 #define PVR_7400       0x000C0000
 
 /*