diff options
author | ru <ru@FreeBSD.org> | 2002-06-01 08:29:12 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-06-01 08:29:12 +0000 |
commit | d2b5d45e1ad2f5897e1134b8c1db8f05ae4a722f (patch) | |
tree | 594311dc27c7eabb847fda74c0c1ef0140a0f2e8 /sys/dev/ct | |
parent | 6ab9cef9e513d8753a87aa3dd1851f60dd38e3d5 (diff) | |
download | FreeBSD-src-d2b5d45e1ad2f5897e1134b8c1db8f05ae4a722f.zip FreeBSD-src-d2b5d45e1ad2f5897e1134b8c1db8f05ae4a722f.tar.gz |
Quick, low impact band-aide to unbreak the build. Added && 0 so we
ifdef out what appears to be a bogus call to softintr using data
elements that aren't in the softc.
Forgotten by: imp
Diffstat (limited to 'sys/dev/ct')
-rw-r--r-- | sys/dev/ct/ct_machdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ct/ct_machdep.h b/sys/dev/ct/ct_machdep.h index dd3cc7a..18a9ec8 100644 --- a/sys/dev/ct/ct_machdep.h +++ b/sys/dev/ct/ct_machdep.h @@ -208,7 +208,7 @@ ct_cmdp_write_1(chp, val) CT_BUS_WEIGHT(chp) } -#if defined(__i386__) +#if defined(__i386__) && 0 #define SOFT_INTR_REQUIRED(slp) (softintr((slp)->sl_irq)) #else /* !__i386__ */ #define SOFT_INTR_REQUIRED(slp) |