parisc: Fix printk continuations in system detection
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
@ -58,7 +58,7 @@ void __init setup_pdc(void)
|
|||||||
status = pdc_system_map_find_mods(&module_result, &module_path, 0);
|
status = pdc_system_map_find_mods(&module_result, &module_path, 0);
|
||||||
if (status == PDC_OK) {
|
if (status == PDC_OK) {
|
||||||
pdc_type = PDC_TYPE_SYSTEM_MAP;
|
pdc_type = PDC_TYPE_SYSTEM_MAP;
|
||||||
printk("System Map.\n");
|
pr_cont("System Map.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ void __init setup_pdc(void)
|
|||||||
status = pdc_pat_cell_get_number(&cell_info);
|
status = pdc_pat_cell_get_number(&cell_info);
|
||||||
if (status == PDC_OK) {
|
if (status == PDC_OK) {
|
||||||
pdc_type = PDC_TYPE_PAT;
|
pdc_type = PDC_TYPE_PAT;
|
||||||
printk("64 bit PAT.\n");
|
pr_cont("64 bit PAT.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@ -97,12 +97,12 @@ void __init setup_pdc(void)
|
|||||||
case 0xC: /* 715/64, at least */
|
case 0xC: /* 715/64, at least */
|
||||||
|
|
||||||
pdc_type = PDC_TYPE_SNAKE;
|
pdc_type = PDC_TYPE_SNAKE;
|
||||||
printk("Snake.\n");
|
pr_cont("Snake.\n");
|
||||||
return;
|
return;
|
||||||
|
|
||||||
default: /* Everything else */
|
default: /* Everything else */
|
||||||
|
|
||||||
printk("Unsupported.\n");
|
pr_cont("Unsupported.\n");
|
||||||
panic("If this is a 64-bit machine, please try a 64-bit kernel.\n");
|
panic("If this is a 64-bit machine, please try a 64-bit kernel.\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user