Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
4345a64a
Commit
4345a64a
authored
Nov 17, 2016
by
Helge Deller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parisc: Fix printk continuations in system detection
Signed-off-by:
Helge Deller
<
deller@gmx.de
>
parent
3b404a51
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
arch/parisc/kernel/inventory.c
arch/parisc/kernel/inventory.c
+4
-4
No files found.
arch/parisc/kernel/inventory.c
View file @
4345a64a
...
...
@@ -58,7 +58,7 @@ void __init setup_pdc(void)
status
=
pdc_system_map_find_mods
(
&
module_result
,
&
module_path
,
0
);
if
(
status
==
PDC_OK
)
{
pdc_type
=
PDC_TYPE_SYSTEM_MAP
;
pr
intk
(
"System Map.
\n
"
);
pr
_cont
(
"System Map.
\n
"
);
return
;
}
...
...
@@ -77,7 +77,7 @@ void __init setup_pdc(void)
status
=
pdc_pat_cell_get_number
(
&
cell_info
);
if
(
status
==
PDC_OK
)
{
pdc_type
=
PDC_TYPE_PAT
;
pr
intk
(
"64 bit PAT.
\n
"
);
pr
_cont
(
"64 bit PAT.
\n
"
);
return
;
}
#endif
...
...
@@ -97,12 +97,12 @@ void __init setup_pdc(void)
case
0xC
:
/* 715/64, at least */
pdc_type
=
PDC_TYPE_SNAKE
;
pr
intk
(
"Snake.
\n
"
);
pr
_cont
(
"Snake.
\n
"
);
return
;
default:
/* Everything else */
pr
intk
(
"Unsupported.
\n
"
);
pr
_cont
(
"Unsupported.
\n
"
);
panic
(
"If this is a 64-bit machine, please try a 64-bit kernel.
\n
"
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment