Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 26067
b: refs/heads/master
c: 1c97b73
h: refs/heads/master
i:
  26065: 9deba38
  26063: 1852b2c
v: v3
  • Loading branch information
Andrew Morton authored and Russell King committed Apr 20, 2006
1 parent 29b3103 commit 4bdf400
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 4b91ff4f425edb875c8e071d19a2417d23c578a4
refs/heads/master: 1c97b73e89af9a20e99450c554cffdd9327e827a
6 changes: 3 additions & 3 deletions trunk/arch/arm/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ static void __init early_initrd(char **p)
}
__early_param("initrd=", early_initrd);

static void __init add_memory(unsigned long start, unsigned long size)
static void __init arm_add_memory(unsigned long start, unsigned long size)
{
/*
* Ensure that start/size are aligned to a page boundary.
Expand Down Expand Up @@ -445,7 +445,7 @@ static void __init early_mem(char **p)
if (**p == '@')
start = memparse(*p + 1, p);

add_memory(start, size);
arm_add_memory(start, size);
}
__early_param("mem=", early_mem);

Expand Down Expand Up @@ -587,7 +587,7 @@ static int __init parse_tag_mem32(const struct tag *tag)
tag->u.mem.start, tag->u.mem.size / 1024);
return -EINVAL;
}
add_memory(tag->u.mem.start, tag->u.mem.size);
arm_add_memory(tag->u.mem.start, tag->u.mem.size);
return 0;
}

Expand Down

0 comments on commit 4bdf400

Please sign in to comment.