diff options
author | scottl <scottl@FreeBSD.org> | 2001-10-30 21:13:39 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2001-10-30 21:13:39 +0000 |
commit | e3a5468ff874c6f6632d77225b39afffa64f97b5 (patch) | |
tree | cdca0ff28de417cfff1deb8e4c2ffb2dadec4583 /sys/dev/asr/asr.c | |
parent | c955d42b4afcc8475ff4b0115e826fccf9635cdc (diff) | |
download | FreeBSD-src-e3a5468ff874c6f6632d77225b39afffa64f97b5.zip FreeBSD-src-e3a5468ff874c6f6632d77225b39afffa64f97b5.tar.gz |
Put a Band-Aid over the asr driver so that it hopefully won't cause
panics until the author comes up with a real fix.
Diffstat (limited to 'sys/dev/asr/asr.c')
-rw-r--r-- | sys/dev/asr/asr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/asr/asr.c b/sys/dev/asr/asr.c index 32062a0..12e251b 100644 --- a/sys/dev/asr/asr.c +++ b/sys/dev/asr/asr.c @@ -634,7 +634,9 @@ asr_drvinit ( } /* asr_drvinit */ /* Must initialize before CAM layer picks up our HBA driver */ +#ifdef ASR_VERY_BROKEN SYSINIT(asrdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,asr_drvinit,NULL) +#endif /* I2O support routines */ #define defAlignLong(STRUCT,NAME) char NAME[sizeof(STRUCT)] |