Commit 29e0d209 authored by Paul Mundt's avatar Paul Mundt

sh: Add SH-5 subtypes to check_bugs() for utsname.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent b4eaa1cc
...@@ -48,9 +48,16 @@ static void __init check_bugs(void) ...@@ -48,9 +48,16 @@ static void __init check_bugs(void)
*p++ = 's'; *p++ = 's';
*p++ = 'p'; *p++ = 'p';
break; break;
default: case CPU_SH5_101 ... CPU_SH5_103:
*p++ = '?'; *p++ = '6';
*p++ = '!'; *p++ = '4';
break;
case CPU_SH_NONE:
/*
* Specifically use CPU_SH_NONE rather than default:,
* so we're able to have the compiler whine about
* unhandled enumerations.
*/
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment