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
a23cf970
Commit
a23cf970
authored
Feb 27, 2002
by
Paul Mackerras
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://24.221.152.185/linux-2.5-8xxcleanup
into quango.ozlabs.ibm.com:/home/paulus/kernel/for-linus-ppc
parents
a814d16f
d24be85e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
arch/ppc/boot/ld.script
arch/ppc/boot/ld.script
+1
-0
arch/ppc/boot/simple/misc-embedded.c
arch/ppc/boot/simple/misc-embedded.c
+3
-1
arch/ppc/mm/cachemap.c
arch/ppc/mm/cachemap.c
+1
-1
No files found.
arch/ppc/boot/ld.script
View file @
a23cf970
...
...
@@ -44,6 +44,7 @@ SECTIONS
{
*(.data)
*(.data1)
*(.data.boot)
*(.sdata)
*(.sdata2)
*(.got.plt) *(.got)
...
...
arch/ppc/boot/simple/misc-embedded.c
View file @
a23cf970
...
...
@@ -59,7 +59,9 @@ char netroot_string[] = "root=/dev/nfs rw ip=auto";
/* Serial port to use. */
unsigned
long
com_port
;
bd_t
hold_resid_buf
;
/* We need to make sure that this is before the images to ensure
* that it's in a mapped location. - Tom */
bd_t
hold_resid_buf
__attribute__
((
__section__
(
".data.boot"
)));
bd_t
*
hold_residual
=
&
hold_resid_buf
;
extern
unsigned
long
serial_init
(
int
chan
,
bd_t
*
bp
);
...
...
arch/ppc/mm/cachemap.c
View file @
a23cf970
...
...
@@ -157,6 +157,6 @@ size_t size, int direction)
{
unsigned
long
start
;
start
=
(
unsigned
long
)(
page
->
virtual
)
+
offset
;
start
=
page_address
(
page
)
+
offset
;
consistent_sync
(
start
,
size
,
direction
);
}
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