diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-08-19 15:31:07 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-08-19 15:31:07 +0000 |
commit | e773e2ac8403ab0c81a903c03cc2db4edd5cc40a (patch) | |
tree | 595559c9b8fc3f087025974dd7e2d90d7cd1299e /sys/arch | |
parent | 34581b1bac72e6757e35dac4803d539a11e83c0a (diff) |
Our ddb_init doesn't take argument (it should, but that's another story).
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc64/sparc64/autoconf.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/arch/sparc64/sparc64/autoconf.c b/sys/arch/sparc64/sparc64/autoconf.c index 033abf4856b..1842d00ae79 100644 --- a/sys/arch/sparc64/sparc64/autoconf.c +++ b/sys/arch/sparc64/sparc64/autoconf.c @@ -207,9 +207,6 @@ bootstrap(nctx) int nctx; { extern int end; /* End of kernel */ -#if defined(DDB) && defined(DB_ELF_SYMBOLS) - extern void *ssym, *esym; -#endif #ifndef __arch64__ /* Assembly glue for the PROM */ extern void OF_sym2val32 __P((void *)); @@ -232,11 +229,7 @@ bootstrap(nctx) /* Initialize the PROM console so printf will not panic */ (*cn_tab->cn_init)(cn_tab); #ifdef DDB -#ifdef DB_ELF_SYMBOLS - ddb_init((int)((caddr_t)esym - (caddr_t)ssym), ssym, esym); -#else ddb_init(); -#endif #ifdef __arch64__ /* This can only be installed on an 64-bit system cause otherwise our stack is screwed */ OF_set_symbol_lookup(OF_sym2val, OF_val2sym); |