kgdb,x86_64: fix compile warning found with sparse

Fix sparse warning:

arch/x86/kernel/kgdb.c:123:9: warning: switch with no cases

Reported-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>

+2 -2
+2 -2
arch/x86/kernel/kgdb.c
··· 121 121 memcpy(mem, (void *)regs + dbg_reg_def[regno].offset, 122 122 dbg_reg_def[regno].size); 123 123 124 - switch (regno) { 125 124 #ifdef CONFIG_X86_32 125 + switch (regno) { 126 126 case GDB_SS: 127 127 if (!user_mode_vm(regs)) 128 128 *(unsigned long *)mem = __KERNEL_DS; ··· 135 135 case GDB_FS: 136 136 *(unsigned long *)mem = 0xFFFF; 137 137 break; 138 - #endif 139 138 } 139 + #endif 140 140 return dbg_reg_def[regno].name; 141 141 } 142 142