diff options
author | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-01-13 10:53:28 +0000 |
---|---|---|
committer | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-01-13 10:53:28 +0000 |
commit | 101f8375a13b6561cb0bd8029e06a5973f742bc6 (patch) | |
tree | 3ea919926deef298c57b9ecfe85bcb2f8fa2fe33 | |
parent | dd6041742a0b625f351f0923829c377a9c5406ca (diff) |
small changes to get it compiled on the pmax (does'nt affect anything else)
-rw-r--r-- | sys/dev/tc/asc.c | 4 | ||||
-rw-r--r-- | sys/dev/tc/asc_ioasic.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/tc/asc.c b/sys/dev/tc/asc.c index d43a317b199..cafd9b84422 100644 --- a/sys/dev/tc/asc.c +++ b/sys/dev/tc/asc.c @@ -1240,7 +1240,7 @@ abort: #if 0 panic("asc_intr"); #else - boot(4, NULL); /* XXX */ + boot(4); /* XXX */ #endif } @@ -2057,7 +2057,7 @@ asc_timeout(arg) #if 0 panic("asc_timeout"); #else - boot(4, NULL); /* XXX */ + boot(4); /* XXX */ #endif } diff --git a/sys/dev/tc/asc_ioasic.c b/sys/dev/tc/asc_ioasic.c index 14c6e987a91..c35ffb927ad 100644 --- a/sys/dev/tc/asc_ioasic.c +++ b/sys/dev/tc/asc_ioasic.c @@ -26,7 +26,7 @@ #include <pmax/dev/ascreg.h> /* XXX */ #include <dev/tc/ascvar.h> -#include <mips/locore.h> /* XXX XXX bus.h needs cache-consistency*/ +#include <machine/locore.h> /* XXX XXX bus.h needs cache-consistency*/ /*XXX*/ #include <pmax/pmax/asic.h> /* XXX ioasic register defs? */ |