mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
4956c7034c
commit
cbcfdbcfe6
3 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue