diff options
| author | Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com> | 2008-08-02 15:24:06 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-08-15 10:53:24 -0400 |
| commit | 2070dae10f50ec244f58292436ace9a3f9dc1d71 (patch) | |
| tree | fadaf72d30f085ff20fde72a4e772d90b487be6c | |
| parent | 020878ac427aa053414602cef975c2b5a2e33bf8 (diff) | |
x86: coding style fixes to arch/x86/kernel/bios_uv.c
paolo@paolo-desktop:~/linux.trees.git$ md5sum /tmp/bios_uv.o.*
9afe794594831166704744184e192ed8 /tmp/bios_uv.o.after
9afe794594831166704744184e192ed8 /tmp/bios_uv.o.before
Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
| -rw-r--r-- | arch/x86/kernel/bios_uv.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86/kernel/bios_uv.c b/arch/x86/kernel/bios_uv.c index c639bd55391c..fdd585f9c53d 100644 --- a/arch/x86/kernel/bios_uv.c +++ b/arch/x86/kernel/bios_uv.c | |||
| @@ -25,11 +25,11 @@ x86_bios_strerror(long status) | |||
| 25 | { | 25 | { |
| 26 | const char *str; | 26 | const char *str; |
| 27 | switch (status) { | 27 | switch (status) { |
| 28 | case 0: str = "Call completed without error"; break; | 28 | case 0: str = "Call completed without error"; break; |
| 29 | case -1: str = "Not implemented"; break; | 29 | case -1: str = "Not implemented"; break; |
| 30 | case -2: str = "Invalid argument"; break; | 30 | case -2: str = "Invalid argument"; break; |
| 31 | case -3: str = "Call completed with error"; break; | 31 | case -3: str = "Call completed with error"; break; |
| 32 | default: str = "Unknown BIOS status code"; break; | 32 | default: str = "Unknown BIOS status code"; break; |
| 33 | } | 33 | } |
| 34 | return str; | 34 | return str; |
| 35 | } | 35 | } |
