prom_free_prom_memory() returns unsigned long
authorArthur Othieno <a.othieno@bluewin.ch>
Fri, 28 Oct 2005 04:42:56 +0000 (00:42 -0400)
committerRalf Baechle <ralf@linux-mips.org>
Sat, 29 Oct 2005 18:32:53 +0000 (19:32 +0100)
    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>
arch/mips/momentum/jaguar_atx/prom.c
arch/mips/momentum/ocelot_3/prom.c
arch/mips/pmc-sierra/yosemite/prom.c

index 14ae2e71358506b3364304cce3b7315774b3d7c1..aae7a802767a5ab1d79df4ba289c40c5ffe59760 100644 (file)
@@ -236,8 +236,9 @@ void __init prom_init(void)
 #endif
 }
 
-void __init prom_free_prom_memory(void)
+unsigned long __init prom_free_prom_memory(void)
 {
+       return 0;
 }
 
 void __init prom_fixup_mem_map(unsigned long start, unsigned long end)
index c4fa9c525faaa56fb476454c5fd78a79772f1994..9803daa2a792fb54701a9f5c1a9530deec7a4f43 100644 (file)
@@ -239,8 +239,9 @@ void __init prom_init(void)
 #endif
 }
 
-void __init prom_free_prom_memory(void)
+unsigned long __init prom_free_prom_memory(void)
 {
+       return 0;
 }
 
 void __init prom_fixup_mem_map(unsigned long start, unsigned long end)
index 1fb3e697948dd4084ae4105c40e8599e12417fa5..555bfacf76475975a3d6e24792c48a1321234b29 100644 (file)
@@ -132,8 +132,9 @@ void __init prom_init(void)
        prom_grab_secondary();
 }
 
-void __init prom_free_prom_memory(void)
+unsigned long __init prom_free_prom_memory(void)
 {
+       return 0;
 }
 
 void __init prom_fixup_mem_map(unsigned long start, unsigned long end)