From: Ladislav Michl Date: Sat, 23 Jul 2005 22:54:52 +0000 (+0000) Subject: Void functions shouldn't return values X-Git-Tag: v2.6.15-rc1~731^2~1^2~122 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=132940401174ed04f9e8f1ae2dad6f47da26ee0a;p=linux-2.6-omap-h63xx.git Void functions shouldn't return values Signed-off-by: Ladislav Michl Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/au1000/pb1000/init.c b/arch/mips/au1000/pb1000/init.c index 34713c5df0d..e9fa1bab81f 100644 --- a/arch/mips/au1000/pb1000/init.c +++ b/arch/mips/au1000/pb1000/init.c @@ -65,5 +65,4 @@ void __init prom_init(void) memsize = simple_strtol(memsize_str, NULL, 0); } add_memory_region(0, memsize, BOOT_MEM_RAM); - return 0; }