Fixed formatting.

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

View File

@@ -23,24 +23,24 @@ ppc_cpu_revision_t current_ppc_revision = 0xff;
ppc_cpu_id_t get_ppc_cpu_type() ppc_cpu_id_t get_ppc_cpu_type()
{ {
unsigned int pvr = (_read_PVR() >> 16) ; unsigned int pvr = (_read_PVR() >> 16);
current_ppc_cpu = (ppc_cpu_id_t) pvr; current_ppc_cpu = (ppc_cpu_id_t) pvr;
switch (pvr) { switch (pvr) {
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:
case PPC_604r : case PPC_604r:
case PPC_620 : case PPC_620:
case PPC_860 : case PPC_860:
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;
} }