diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-04-18 17:12:21 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-04-18 17:12:21 +0000 |
commit | a6a904544a03430da971edb0c6cb2fc574348d79 (patch) | |
tree | d8e8eb59ac4073e51f834df2e7997dc5fe0c68e3 /sys/arch/i386/isa/isa_machdep.c | |
parent | a6a715c7a6fe45922172c2af5ada0becdc68d9a5 (diff) |
Merge of NetBSD 960317
Diffstat (limited to 'sys/arch/i386/isa/isa_machdep.c')
-rw-r--r-- | sys/arch/i386/isa/isa_machdep.c | 32 |
1 files changed, 2 insertions, 30 deletions
diff --git a/sys/arch/i386/isa/isa_machdep.c b/sys/arch/i386/isa/isa_machdep.c index dc21d08587b..98be314a8c0 100644 --- a/sys/arch/i386/isa/isa_machdep.c +++ b/sys/arch/i386/isa/isa_machdep.c @@ -1,4 +1,5 @@ -/* $NetBSD: isa_machdep.c,v 1.10 1996/02/09 02:26:00 mycroft Exp $ */ +/* $OpenBSD: isa_machdep.c,v 1.10 1996/04/18 17:12:16 niklas Exp $ */ +/* $NetBSD: isa_machdep.c,v 1.11 1996/02/28 01:49:35 cgd Exp $ */ /*- * Copyright (c) 1993, 1994 Charles Hannum. @@ -61,35 +62,6 @@ typedef (*vector)(); extern vector IDTVEC(intr)[], IDTVEC(fast)[]; extern struct gate_descriptor idt[]; -int isamatch __P((struct device *, void *, void *)); -void isaattach __P((struct device *, struct device *, void *)); - -struct cfdriver isacd = { - NULL, "isa", isamatch, isaattach, DV_DULL, sizeof(struct isa_softc), 1 -}; - -int -isamatch(parent, match, aux) - struct device *parent; - void *match, *aux; -{ - - return (1); -} - -void -isaattach(parent, self, aux) - struct device *parent, *self; - void *aux; -{ - struct isa_softc *sc = (struct isa_softc *)self; - - printf("\n"); - - TAILQ_INIT(&sc->sc_subdevs); - config_scan(isascan, self); -} - /* * Fill in default interrupt table (in case of spuruious interrupt * during configuration of kernel, setup interrupt control unit |