Fixed formatting.

This commit is contained in:
Joel Sherrill
2000-07-06 20:40:50 +00:00
parent 79ef2d81fe
commit eaedd00a84

View File

@@ -30,7 +30,7 @@ ppc_cpu_id_t get_ppc_cpu_type()
case PPC_601: case PPC_601:
case PPC_603: case PPC_603:
case PPC_604: case PPC_604:
case PPC_603e : case PPC_603:
case PPC_603ev: case PPC_603ev:
case PPC_750: case PPC_750:
case PPC_604e: case PPC_604e:
@@ -40,7 +40,7 @@ ppc_cpu_id_t get_ppc_cpu_type()
current_ppc_cpu = (ppc_cpu_id_t) pvr; current_ppc_cpu = (ppc_cpu_id_t) pvr;
return current_ppc_cpu; return current_ppc_cpu;
default: default:
printk("Unknown PVR value. Please add it to <libcpu/powerpc/shared/cpu.h> \n"); printk("Unknown PVR value of 0x%x. Please add it to <libcpu/powerpc/shared/cpu.h>\n", pvr );
return PPC_UNKNOWN; return PPC_UNKNOWN;
} }