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
47224407
Commit
47224407
authored
Oct 05, 2004
by
Russell King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] Fix params_phys with PIC decompressor builds.
parent
d3f61e5a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
arch/arm/boot/compressed/head.S
arch/arm/boot/compressed/head.S
+6
-0
include/asm-arm/arch-rpc/uncompress.h
include/asm-arm/arch-rpc/uncompress.h
+2
-2
No files found.
arch/arm/boot/compressed/head.S
View file @
47224407
...
...
@@ -349,6 +349,12 @@ LC0: .word LC0 @ r1
LC1
:
.
word
reloc_end
-
reloc_start
.
size
LC0
,
.
-
LC0
.
globl
params
params
:
ldr
r0
,
=
params_phys
mov
pc
,
lr
.
ltorg
.
align
/*
*
Turn
on
the
cache
.
We
need
to
setup
some
page
tables
so
that
we
*
can
have
both
the
I
and
D
caches
on
.
...
...
include/asm-arm/arch-rpc/uncompress.h
View file @
47224407
...
...
@@ -60,8 +60,8 @@ static const unsigned long palette_4[16] = {
* params_phys is a linker defined symbol - see
* arch/arm/boot/compressed/Makefile
*/
extern
struct
param_struct
params_phys
;
#define params (
¶ms_phys
)
extern
__attribute__
((
pure
))
struct
param_struct
*
params
(
void
)
;
#define params (
params()
)
#ifndef STANDALONE_DEBUG
/*
...
...
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