diff options
author | Helge Deller <deller@gmx.de> | 2016-11-17 15:13:56 -0500 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2016-11-22 12:09:33 -0500 |
commit | 4345a64ac931a8dc499f1fc69880952412f36c3e (patch) | |
tree | 9d42b0265e18402d5b73b823fc1aa2e35f86e71a /arch/parisc | |
parent | 3b404a519815b9820f73f1ecf404e5546c9270ba (diff) |
parisc: Fix printk continuations in system detection
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/kernel/inventory.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/parisc/kernel/inventory.c b/arch/parisc/kernel/inventory.c index 545f9d2fe711..c05d1876d27c 100644 --- a/arch/parisc/kernel/inventory.c +++ b/arch/parisc/kernel/inventory.c | |||
@@ -58,7 +58,7 @@ void __init setup_pdc(void) | |||
58 | status = pdc_system_map_find_mods(&module_result, &module_path, 0); | 58 | status = pdc_system_map_find_mods(&module_result, &module_path, 0); |
59 | if (status == PDC_OK) { | 59 | if (status == PDC_OK) { |
60 | pdc_type = PDC_TYPE_SYSTEM_MAP; | 60 | pdc_type = PDC_TYPE_SYSTEM_MAP; |
61 | printk("System Map.\n"); | 61 | pr_cont("System Map.\n"); |
62 | return; | 62 | return; |
63 | } | 63 | } |
64 | 64 | ||
@@ -77,7 +77,7 @@ void __init setup_pdc(void) | |||
77 | status = pdc_pat_cell_get_number(&cell_info); | 77 | status = pdc_pat_cell_get_number(&cell_info); |
78 | if (status == PDC_OK) { | 78 | if (status == PDC_OK) { |
79 | pdc_type = PDC_TYPE_PAT; | 79 | pdc_type = PDC_TYPE_PAT; |
80 | printk("64 bit PAT.\n"); | 80 | pr_cont("64 bit PAT.\n"); |
81 | return; | 81 | return; |
82 | } | 82 | } |
83 | #endif | 83 | #endif |
@@ -97,12 +97,12 @@ void __init setup_pdc(void) | |||
97 | case 0xC: /* 715/64, at least */ | 97 | case 0xC: /* 715/64, at least */ |
98 | 98 | ||
99 | pdc_type = PDC_TYPE_SNAKE; | 99 | pdc_type = PDC_TYPE_SNAKE; |
100 | printk("Snake.\n"); | 100 | pr_cont("Snake.\n"); |
101 | return; | 101 | return; |
102 | 102 | ||
103 | default: /* Everything else */ | 103 | default: /* Everything else */ |
104 | 104 | ||
105 | printk("Unsupported.\n"); | 105 | pr_cont("Unsupported.\n"); |
106 | panic("If this is a 64-bit machine, please try a 64-bit kernel.\n"); | 106 | panic("If this is a 64-bit machine, please try a 64-bit kernel.\n"); |
107 | } | 107 | } |
108 | } | 108 | } |