diff options
author | Kuninori Morimoto <morimoto.kuninori@renesas.com> | 2009-08-26 10:49:44 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-08-27 11:35:46 +0900 |
commit | b37c7c66f08df66ba7a8269b6d1af949ef8dbd95 (patch) | |
tree | fc9e9ce73de0a010acb433989517d4a6b803ce90 | |
parent | c68e3206862f647117a46a73af76764d750c05bd (diff) | |
download | kernel_samsung_espresso10-b37c7c66f08df66ba7a8269b6d1af949ef8dbd95.zip kernel_samsung_espresso10-b37c7c66f08df66ba7a8269b6d1af949ef8dbd95.tar.gz kernel_samsung_espresso10-b37c7c66f08df66ba7a8269b6d1af949ef8dbd95.tar.bz2 |
sh: fix CPU_SH7723/7724 numbering bug
Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/kernel/cpu/sh4/probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/cpu/sh4/probe.c b/arch/sh/kernel/cpu/sh4/probe.c index 10e6795..afd3e73 100644 --- a/arch/sh/kernel/cpu/sh4/probe.c +++ b/arch/sh/kernel/cpu/sh4/probe.c @@ -141,7 +141,7 @@ int __init detect_cpu_and_cache_system(void) case 0x300b: switch (prr) { case 0x20: - boot_cpu_data.type = CPU_SH7723; + boot_cpu_data.type = CPU_SH7724; boot_cpu_data.flags |= CPU_HAS_L2_CACHE; break; case 0x50: |