From: Paul M. <le...@us...> - 2002-03-08 18:55:50
|
Update of /cvsroot/linux-mips/linux/arch/mips/vr41xx/vr4121/workpad In directory usw-pr-cvs1:/tmp/cvs-serv31497/arch/mips/vr41xx/vr4121/workpad Modified Files: init.c Log Message: Fix for missing break from Yoichi-san. Index: init.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/vr41xx/vr4121/workpad/init.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- init.c 7 Mar 2002 03:16:54 -0000 1.1 +++ init.c 8 Mar 2002 18:55:45 -0000 1.2 @@ -60,6 +60,7 @@ switch (mem_size) { case 16: add_memory_region(0, 16 << 20, BOOT_MEM_RAM); + break; case 32: add_memory_region(0, 32 << 20, BOOT_MEM_RAM); break; |