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
nexedi
linux
Commits
f9bd6ea4
Commit
f9bd6ea4
authored
Jul 04, 2005
by
Russell King
Committed by
Russell King
Jul 04, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] ARM: Change 'param_offset' to 'boot_params'
Signed-off-by:
Russell King
<
rmk+kernel@arm.linux.org.uk
>
parent
19f7241a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
arch/arm/kernel/setup.c
arch/arm/kernel/setup.c
+2
-2
include/asm-arm/mach/arch.h
include/asm-arm/mach/arch.h
+1
-1
No files found.
arch/arm/kernel/setup.c
View file @
f9bd6ea4
...
...
@@ -737,8 +737,8 @@ void __init setup_arch(char **cmdline_p)
if
(
mdesc
->
soft_reboot
)
reboot_setup
(
"s"
);
if
(
mdesc
->
param_offset
)
tags
=
phys_to_virt
(
mdesc
->
param_offset
);
if
(
mdesc
->
boot_params
)
tags
=
phys_to_virt
(
mdesc
->
boot_params
);
/*
* If we have the old style parameters, convert them to
...
...
include/asm-arm/mach/arch.h
View file @
f9bd6ea4
...
...
@@ -26,7 +26,7 @@ struct machine_desc {
* page tabe entry */
const
char
*
name
;
/* architecture name */
unsigned
int
param_offset
;
/* parameter page
*/
unsigned
long
boot_params
;
/* tagged list
*/
unsigned
int
video_start
;
/* start of video RAM */
unsigned
int
video_end
;
/* end of video RAM */
...
...
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