projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
154b500
)
Void functions shouldn't return values
author
Ladislav Michl
<ladis@linux-mips.org>
Sat, 23 Jul 2005 22:54:52 +0000
(22:54 +0000)
committer
Ralf Baechle
<ralf@linux-mips.org>
Sat, 29 Oct 2005 18:31:57 +0000
(19:31 +0100)
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/au1000/pb1000/init.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/mips/au1000/pb1000/init.c
b/arch/mips/au1000/pb1000/init.c
index 34713c5df0d7e4d47398bb29ac97d3b99c4bd463..e9fa1bab81f3d13b99d8d057300f519119ddbffa 100644
(file)
--- 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;
}