Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/linux-2.6-kgdb

* 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/linux-2.6-kgdb:
kgdboc,input: Fix regression with keyboard release key and early debugging

+2 -1
+2 -1
drivers/serial/kgdboc.c
··· 90 90 91 91 static void kgdboc_restore_input(void) 92 92 { 93 - schedule_work(&kgdboc_restore_input_work); 93 + if (likely(system_state == SYSTEM_RUNNING)) 94 + schedule_work(&kgdboc_restore_input_work); 94 95 } 95 96 96 97 static int kgdboc_register_kbd(char **cptr)