diff options
-rw-r--r-- | include/asm-sh/bugs.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/include/asm-sh/bugs.h b/include/asm-sh/bugs.h index b66139ff73fc..e2d79567e2a9 100644 --- a/include/asm-sh/bugs.h +++ b/include/asm-sh/bugs.h | |||
@@ -48,9 +48,16 @@ static void __init check_bugs(void) | |||
48 | *p++ = 's'; | 48 | *p++ = 's'; |
49 | *p++ = 'p'; | 49 | *p++ = 'p'; |
50 | break; | 50 | break; |
51 | default: | 51 | case CPU_SH5_101 ... CPU_SH5_103: |
52 | *p++ = '?'; | 52 | *p++ = '6'; |
53 | *p++ = '!'; | 53 | *p++ = '4'; |
54 | break; | ||
55 | case CPU_SH_NONE: | ||
56 | /* | ||
57 | * Specifically use CPU_SH_NONE rather than default:, | ||
58 | * so we're able to have the compiler whine about | ||
59 | * unhandled enumerations. | ||
60 | */ | ||
54 | break; | 61 | break; |
55 | } | 62 | } |
56 | 63 | ||