This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / ppc / kernel / ppc-stub.c
index a869750..37c9c8b 100644 (file)
 #include <linux/mm.h>
 #include <linux/smp.h>
 #include <linux/smp_lock.h>
-#include <linux/init.h>
-#include <linux/sysrq.h>
 
 #include <asm/cacheflush.h>
 #include <asm/system.h>
@@ -234,7 +232,7 @@ mem2hex(const char *mem, char *buf, int count)
        } else {
                /* error condition */
        }
-       debugger_fault_handler = NULL;
+       debugger_fault_handler = 0;
        *buf = 0;
        return buf;
 }
@@ -300,7 +298,7 @@ hex2mem(char *buf, char *mem, int count)
        } else {
                /* error condition */
        }
-       debugger_fault_handler = NULL;
+       debugger_fault_handler = 0;
        return mem;
 }
 
@@ -331,7 +329,7 @@ hexToInt(char **ptr, int *intValue)
        } else {
                /* error condition */
        }
-       debugger_fault_handler = NULL;
+       debugger_fault_handler = 0;
 
        return (numChars);
 }
@@ -857,23 +855,3 @@ kgdb_output_string (const char* s, unsigned int count)
        return 1;
 }
 #endif
-
-static void sysrq_handle_gdb(int key, struct pt_regs *pt_regs,
-                            struct tty_struct *tty)
-{
-       printk("Entering GDB stub\n");
-       breakpoint();
-}
-static struct sysrq_key_op sysrq_gdb_op = {
-        .handler        = sysrq_handle_gdb,
-        .help_msg       = "Gdb",
-        .action_msg     = "GDB",
-};
-
-static int gdb_register_sysrq(void)
-{
-       printk("Registering GDB sysrq handler\n");
-       register_sysrq_key('g', &sysrq_gdb_op);
-       return 0;
-}
-module_init(gdb_register_sysrq);