diff options
author | bde <bde@FreeBSD.org> | 1995-11-04 17:08:13 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-11-04 17:08:13 +0000 |
commit | 6073486300a2c7430d184a9a41ad42bcb0c4345c (patch) | |
tree | a314bfc13d707ab8df235edc500e88916380d16d /sys/i386/isa/if_ix.c | |
parent | e2427bd86958366ec25f29d70bb5c148c61a704b (diff) | |
download | FreeBSD-src-6073486300a2c7430d184a9a41ad42bcb0c4345c.zip FreeBSD-src-6073486300a2c7430d184a9a41ad42bcb0c4345c.tar.gz |
Added `#include "ioconf.h"' to <machine/conf.h> and cleaned up the
misplaced extern declarations (mostly prototypes of interrupt handlers)
that this exposed. The prototypes should be moved back to the driver
sources when the functions are staticalized.
Added idempotency guards to <machine/conf.h>. "ioconf.h" can't be
included when building LKMs so define a wart in bsd.kmod.mk to help
guard against including it.
Diffstat (limited to 'sys/i386/isa/if_ix.c')
-rw-r--r-- | sys/i386/isa/if_ix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/i386/isa/if_ix.c b/sys/i386/isa/if_ix.c index acd376e..7d7c9f3 100644 --- a/sys/i386/isa/if_ix.c +++ b/sys/i386/isa/if_ix.c @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_ix.c,v 1.12 1995/10/28 15:39:06 phk Exp $ + * $Id: if_ix.c,v 1.13 1995/10/31 18:41:11 phk Exp $ */ #include "ix.h" @@ -153,7 +153,6 @@ static int ixattach(struct isa_device *); static void ixinit(int); static void ixinit_rfa(int); static void ixinit_tfa(int); -inthand2_t ixintr; static inline void ixintr_cx(int); static inline void ixintr_cx_free(int, cb_t *); static inline void ixintr_fr(int); |