Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 177671
b: refs/heads/master
c: ae4cec4
h: refs/heads/master
i:
  177669: c183eed
  177667: 762d9ad
  177663: b4eb24f
v: v3
  • Loading branch information
Stephen Rothwell authored and Grant Likely committed Dec 14, 2009
1 parent 1ca80c3 commit 4cec5a1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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: c0577eeee0101433a0d929699f4543a1ff3c3014
refs/heads/master: ae4cec4736969ec2196a6bbce4ab263ff7cb7eef
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/mm/40x_mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void __init MMU_init_hw(void)
#define LARGE_PAGE_SIZE_16M (1<<24)
#define LARGE_PAGE_SIZE_4M (1<<22)

unsigned long __init mmu_mapin_ram(void)
unsigned long __init mmu_mapin_ram(unsigned long top)
{
unsigned long v, s, mapped;
phys_addr_t p;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/mm/44x_mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void __init MMU_init_hw(void)
flush_instruction_cache();
}

unsigned long __init mmu_mapin_ram(void)
unsigned long __init mmu_mapin_ram(unsigned long top)
{
unsigned long addr;

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/mm/fsl_booke_mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void invalidate_tlbcam_entry(int index)
loadcam_entry(index);
}

unsigned long __init mmu_mapin_ram(void)
unsigned long __init mmu_mapin_ram(unsigned long top)
{
unsigned long virt = PAGE_OFFSET;
phys_addr_t phys = memstart_addr;
Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/powerpc/mm/mmu_decl.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,15 +150,15 @@ extern void wii_memory_fixups(void);
*/
#if defined(CONFIG_8xx)
#define MMU_init_hw() do { } while(0)
#define mmu_mapin_ram() (0UL)
#define mmu_mapin_ram(top) (0UL)

#elif defined(CONFIG_4xx)
extern void MMU_init_hw(void);
extern unsigned long mmu_mapin_ram(void);
extern unsigned long mmu_mapin_ram(unsigned long top);

#elif defined(CONFIG_FSL_BOOKE)
extern void MMU_init_hw(void);
extern unsigned long mmu_mapin_ram(void);
extern unsigned long mmu_mapin_ram(unsigned long top);
extern void adjust_total_lowmem(void);

#elif defined(CONFIG_PPC32)
Expand Down

0 comments on commit 4cec5a1

Please sign in to comment.