From bbdc01224fa74e1e8f3ef5d12c80cab2fa6dac28 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Thu, 6 May 1999 22:19:38 +0000 Subject: [PATCH] Undo excess staticization - these two are meant to be callable from DDB. --- sys/dev/en/midway.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/dev/en/midway.c b/sys/dev/en/midway.c index a3db462358d..9ce2401038a 100644 --- a/sys/dev/en/midway.c +++ b/sys/dev/en/midway.c @@ -3284,7 +3284,8 @@ done: #define END_BITS "\20\7SWSL\6DRQ\5DTQ\4RX\3TX\2MREGS\1STATS" -static int en_dump(unit, level) +/* Do not staticize - meant for calling from DDB! */ +int en_dump(unit, level) int unit, level; @@ -3451,7 +3452,8 @@ int unit, level; * en_dumpmem: dump the memory */ -static int en_dumpmem(unit, addr, len) +/* Do not staticize - meant for calling from DDB! */ +int en_dumpmem(unit, addr, len) int unit, addr, len;