diff options
| author | Pali Rohár <[email protected]> | 2022-04-03 00:05:10 +0200 |
|---|---|---|
| committer | Priyanka Jain <[email protected]> | 2022-04-26 17:18:39 +0530 |
| commit | efd9914ffa05dc89f7d2830267b27ba2f06ecad1 (patch) | |
| tree | 2227aba0ebca5539eb173a72fc032ba773e07772 | |
| parent | de14a5a95c14b0a5349c430ea35b8b07975f7ce5 (diff) | |
powerpc: mpc85xx: Show e500 core version
Distinguish between e500v1 and e500v2.
Signed-off-by: Pali Rohár <[email protected]>
Reviewed-by: Priyanka Jain <[email protected]>
| -rw-r--r-- | arch/powerpc/cpu/mpc85xx/cpu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/cpu.c b/arch/powerpc/cpu/mpc85xx/cpu.c index cc1d02df811..a82516a75bd 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu.c +++ b/arch/powerpc/cpu/mpc85xx/cpu.c @@ -143,8 +143,10 @@ int checkcpu (void) printf("Core: "); switch(ver) { case PVR_VER_E500_V1: + puts("e500v1"); + break; case PVR_VER_E500_V2: - puts("e500"); + puts("e500v2"); break; case PVR_VER_E500MC: puts("e500mc"); |
