Skip to content

Commit 4345a64

Browse files
committed
parisc: Fix printk continuations in system detection
Signed-off-by: Helge Deller <deller@gmx.de>
1 parent 3b404a5 commit 4345a64

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

arch/parisc/kernel/inventory.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ void __init setup_pdc(void)
5858
status = pdc_system_map_find_mods(&module_result, &module_path, 0);
5959
if (status == PDC_OK) {
6060
pdc_type = PDC_TYPE_SYSTEM_MAP;
61-
printk("System Map.\n");
61+
pr_cont("System Map.\n");
6262
return;
6363
}
6464

@@ -77,7 +77,7 @@ void __init setup_pdc(void)
7777
status = pdc_pat_cell_get_number(&cell_info);
7878
if (status == PDC_OK) {
7979
pdc_type = PDC_TYPE_PAT;
80-
printk("64 bit PAT.\n");
80+
pr_cont("64 bit PAT.\n");
8181
return;
8282
}
8383
#endif
@@ -97,12 +97,12 @@ void __init setup_pdc(void)
9797
case 0xC: /* 715/64, at least */
9898

9999
pdc_type = PDC_TYPE_SNAKE;
100-
printk("Snake.\n");
100+
pr_cont("Snake.\n");
101101
return;
102102

103103
default: /* Everything else */
104104

105-
printk("Unsupported.\n");
105+
pr_cont("Unsupported.\n");
106106
panic("If this is a 64-bit machine, please try a 64-bit kernel.\n");
107107
}
108108
}

0 commit comments

Comments
 (0)