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.
This commit is contained in:
Warner Losh 2002-05-31 23:39:04 +00:00
parent 4956c7034c
commit cbcfdbcfe6
3 changed files with 3 additions and 3 deletions

View file

@ -95,7 +95,7 @@ void ncvattachsubr(struct ncv_softc *);
int ncvprint(void *, const char *);
int ncvintr(void *);
#if defined(__i386__)
#if defined(__i386__) && 0
#define SOFT_INTR_REQUIRED(slp) (softintr((slp)->sl_irq))
#else /* !__i386__ */
#define SOFT_INTR_REQUIRED(slp)

View file

@ -105,7 +105,7 @@ void nspattachsubr(struct nsp_softc *);
int nspprint(void *, const char *);
int nspintr(void *);
#if defined(__i386__)
#if defined(__i386__) && 0
#define SOFT_INTR_REQUIRED(slp) (softintr((slp)->sl_irq))
#else /* !__i386__ */
#define SOFT_INTR_REQUIRED(slp)

View file

@ -103,7 +103,7 @@ void stgattachsubr(struct stg_softc *);
int stgprint(void *, const char *);
int stgintr(void *);
#if defined(__i386__)
#if defined(__i386__) && 0
#define SOFT_INTR_REQUIRED(slp) (softintr((slp)->sl_irq))
#else /* !__i386__ */
#define SOFT_INTR_REQUIRED(slp)