diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-11-14 20:21:43 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-11-14 20:21:43 +0000 |
commit | ef22c7b69d2f2f581eb98cc2fa325c7e740610e4 (patch) | |
tree | 7c266cceba77eee652f344b56eed4d72ea170438 | |
parent | 5974db47606b46a5bca2663d227abeddd57f7895 (diff) |
Use config_found_sm() in the probe machinery. This is simpler and allows us
to report HP-IB devices found for which no driver attached.
-rw-r--r-- | sys/arch/hp300/dev/hpib.c | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/sys/arch/hp300/dev/hpib.c b/sys/arch/hp300/dev/hpib.c index d972d9d315e..f8a39b5d85f 100644 --- a/sys/arch/hp300/dev/hpib.c +++ b/sys/arch/hp300/dev/hpib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hpib.c,v 1.11 2004/12/25 23:02:24 miod Exp $ */ +/* $OpenBSD: hpib.c,v 1.12 2005/11/14 20:21:42 miod Exp $ */ /* $NetBSD: hpib.c,v 1.16 1997/04/27 20:58:57 thorpej Exp $ */ /* @@ -173,7 +173,8 @@ hpibbus_attach_children(sc) /* * Search though all configured children for this bus. */ - (void)config_search(hpibbussearch, &sc->sc_dev, &ha); + (void)config_found_sm(&sc->sc_dev, &ha, hpibbusprint, + hpibbussearch); } } @@ -185,11 +186,13 @@ hpibbussearch(parent, match, aux) struct cfdata *cf = match; struct hpibbus_softc *sc = (struct hpibbus_softc *)parent; struct hpibbus_attach_args *ha = aux; + int pri; /* Make sure this is in a consistent state. */ ha->ha_punit = 0; - if ((*cf->cf_attach->ca_match)(parent, cf, ha) > 0) { + pri = (*cf->cf_attach->ca_match)(parent, cf, ha); + if (pri > 0) { /* * The device probe has succeeded, and filled in * the punit information. Make sure the configuration @@ -197,25 +200,20 @@ hpibbussearch(parent, match, aux) */ if (cf->hpibbuscf_slave != HPIBBUS_SLAVE_UNK && cf->hpibbuscf_slave != ha->ha_slave) - goto out; + return (0); if (cf->hpibbuscf_punit != HPIBBUS_PUNIT_UNK && cf->hpibbuscf_punit != ha->ha_punit) - goto out; + return (0); /* * Allocate the device's address from the bus's * resource map. */ if (hpibbus_alloc(sc, ha->ha_slave, ha->ha_punit)) - goto out; - - /* - * This device is allowed; attach it. - */ - config_attach(parent, cf, ha, hpibbusprint); + return (0); } - out: - return (0); + + return (pri); } int @@ -225,6 +223,11 @@ hpibbusprint(aux, pnp) { struct hpibbus_attach_args *ha = aux; + if (pnp != NULL) { + if (ha->ha_id == 0) + return (QUIET); + printf("HP-IB device (id %04X) at %s", ha->ha_id, pnp); + } printf(" slave %d punit %d", ha->ha_slave, ha->ha_punit); return (UNCONF); } |