diff options
author | Arthur Othieno <a.othieno@bluewin.ch> | 2005-10-28 00:42:56 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:32:53 -0400 |
commit | 5ef66935c1f6d412b37cf4f68281bd4fc7fca7e5 (patch) | |
tree | dfdf1058e37ef12c890719a37070ae011ab47e9a /arch/mips/pmc-sierra | |
parent | 4b724efdde0287d7ba616bd2badc63fca414f978 (diff) |
prom_free_prom_memory() returns unsigned long
Some boards declare prom_free_prom_memory as a void function but the
caller free_initmem() expects a return value.
Fix those up and return 0 instead, just like everyone else does.
Signed-off-by: Arthur Othieno <a.othieno@bluewin.ch>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/pmc-sierra')
-rw-r--r-- | arch/mips/pmc-sierra/yosemite/prom.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/pmc-sierra/yosemite/prom.c b/arch/mips/pmc-sierra/yosemite/prom.c index 1fb3e697948d..555bfacf7647 100644 --- a/arch/mips/pmc-sierra/yosemite/prom.c +++ b/arch/mips/pmc-sierra/yosemite/prom.c | |||
@@ -132,8 +132,9 @@ void __init prom_init(void) | |||
132 | prom_grab_secondary(); | 132 | prom_grab_secondary(); |
133 | } | 133 | } |
134 | 134 | ||
135 | void __init prom_free_prom_memory(void) | 135 | unsigned long __init prom_free_prom_memory(void) |
136 | { | 136 | { |
137 | return 0; | ||
137 | } | 138 | } |
138 | 139 | ||
139 | void __init prom_fixup_mem_map(unsigned long start, unsigned long end) | 140 | void __init prom_fixup_mem_map(unsigned long start, unsigned long end) |