From abf4cde6b9d36b514363f03cf32b9c7cad38887d Mon Sep 17 00:00:00 2001 From: mdodd Date: Fri, 3 Sep 1999 03:14:36 +0000 Subject: SYSINIT() needs sys/kernel.h. Include it. --- sys/i386/bios/mca_machdep.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/i386/bios/mca_machdep.c') diff --git a/sys/i386/bios/mca_machdep.c b/sys/i386/bios/mca_machdep.c index 8eaf682..094b932 100644 --- a/sys/i386/bios/mca_machdep.c +++ b/sys/i386/bios/mca_machdep.c @@ -31,6 +31,7 @@ #include #include +#include #include #include #include @@ -82,7 +83,7 @@ bios_mcabus_present(void * dummy) if (bootverbose) { printf("BIOS SDT: INT call failed.\n"); } - return (0); + return; } if ((vmf.vmf_ah != 0) && (vmf.vmf_flags != 0)) { @@ -91,7 +92,7 @@ bios_mcabus_present(void * dummy) printf("BIOS SDT: AH 0x%02x, Flags 0x%04x\n", vmf.vmf_ah, vmf.vmf_flags); } - return (0); + return; } paddr = vmf.vmf_es; -- cgit v1.1