diff options
Diffstat (limited to 'common/kgdb.c')
-rw-r--r-- | common/kgdb.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/common/kgdb.c b/common/kgdb.c index 4493a159198..29b09fcfe56 100644 --- a/common/kgdb.c +++ b/common/kgdb.c @@ -527,15 +527,18 @@ handle_exception (struct pt_regs *regs) * kgdb_init must be called *after* the * monitor is relocated into ram */ -void -kgdb_init(void) +int kgdb_init(void) { + puts("KGDB: "); + kgdb_serial_init(); debugger_exception_handler = handle_exception; initialized = 1; putDebugStr("kgdb ready\n"); puts("ready\n"); + + return 0; } void |