Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 212415
b: refs/heads/master
c: 842eab4
h: refs/heads/master
i:
  212413: 846a670
  212411: ad27a1c
  212407: 7a3dd8d
  212399: 6850f8c
  212383: 1295e13
  212351: 522d3db
v: v3
  • Loading branch information
Russell King committed Oct 8, 2010
1 parent 986e3e5 commit 7d03401
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c7b0aff44a0740eedd31b759fd08d9e25672fa76
refs/heads/master: 842eab40b6920819fff5caeefdb709f07d3f8e23
2 changes: 1 addition & 1 deletion trunk/arch/arm/kernel/head-common.S
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
__switch_data:
.long __mmap_switched
.long __data_loc @ r4
.long _data @ r5
.long _sdata @ r5
.long __bss_start @ r6
.long _end @ r7
.long processor_id @ r4
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ request_standard_resources(struct meminfo *mi, struct machine_desc *mdesc)

kernel_code.start = virt_to_phys(_text);
kernel_code.end = virt_to_phys(_etext - 1);
kernel_data.start = virt_to_phys(_data);
kernel_data.start = virt_to_phys(_sdata);
kernel_data.end = virt_to_phys(_end - 1);

for (i = 0; i < mi->nr_banks; i++) {
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/arm/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ void __init arm_memblock_init(struct meminfo *mi, struct machine_desc *mdesc)

/* Register the kernel text, kernel data and initrd with memblock. */
#ifdef CONFIG_XIP_KERNEL
memblock_reserve(__pa(_data), _end - _data);
memblock_reserve(__pa(_sdata), _end - _sdata);
#else
memblock_reserve(__pa(_stext), _end - _stext);
#endif
Expand Down Expand Up @@ -545,7 +545,7 @@ void __init mem_init(void)

MLK_ROUNDUP(__init_begin, __init_end),
MLK_ROUNDUP(_text, _etext),
MLK_ROUNDUP(_data, _edata));
MLK_ROUNDUP(_sdata, _edata));

#undef MLK
#undef MLM
Expand Down

0 comments on commit 7d03401

Please sign in to comment.