|
From: Paul M. <le...@us...> - 2006-08-10 10:05:50
|
Update of /cvsroot/linuxsh/linux/arch/sh/kernel/cpu/sh4 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv30784/arch/sh/kernel/cpu/sh4 Modified Files: probe.c Log Message: Typo on the L2 shift, shift by 17, not 7. Index: probe.c =================================================================== RCS file: /cvsroot/linuxsh/linux/arch/sh/kernel/cpu/sh4/probe.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- probe.c 10 Aug 2006 09:58:51 -0000 1.9 +++ probe.c 10 Aug 2006 10:05:46 -0000 1.10 @@ -203,7 +203,7 @@ * * Sizes are 128KB, 258KB, 512KB, and 1MB. */ - size = (cvr & 0xf) << 7; + size = (cvr & 0xf) << 17; BUG_ON(!size); |