summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorStefan Sperling <stsp@cvs.openbsd.org>2009-03-09 11:25:23 +0000
committerStefan Sperling <stsp@cvs.openbsd.org>2009-03-09 11:25:23 +0000
commit827f2d9ecb9c579c3ffc69a6650cfaa1b7555300 (patch)
treecb99dc5fe376f859704996f1ec394f61a388ebd0 /sys/dev/ic
parent1d1097165dbba4df7fef4d5a15b3c1436e546db3 (diff)
Do not start printing device info before attachment succeeded.
ok claudio@
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/acx.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/sys/dev/ic/acx.c b/sys/dev/ic/acx.c
index 69db91da248..05a3c8a5170 100644
--- a/sys/dev/ic/acx.c
+++ b/sys/dev/ic/acx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acx.c,v 1.89 2009/02/26 23:11:31 stsp Exp $ */
+/* $OpenBSD: acx.c,v 1.90 2009/03/09 11:25:22 stsp Exp $ */
/*
* Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org>
@@ -267,10 +267,6 @@ acx_attach(struct acx_softc *sc)
}
#undef EEINFO_RETRY_MAX
- printf("%s: %s, radio %s (0x%02x)", sc->sc_dev.dv_xname,
- (sc->sc_flags & ACX_FLAG_ACX111) ? "ACX111" : "ACX100",
- acx_get_rf(sc->sc_radio_type), sc->sc_radio_type);
-
#ifdef DUMP_EEPROM
for (i = 0; i < 0x40; ++i) {
uint8_t val;
@@ -286,13 +282,11 @@ acx_attach(struct acx_softc *sc)
/* Get EEPROM version */
error = acx_read_eeprom(sc, ACX_EE_VERSION_OFS, &sc->sc_eeprom_ver);
if (error) {
- printf("\n%s: attach failed, could not get EEPROM version!\n",
+ printf("%s: attach failed, could not get EEPROM version!\n",
sc->sc_dev.dv_xname);
return (error);
}
- printf(", EEPROM ver %u", sc->sc_eeprom_ver);
-
ifp->if_softc = sc;
ifp->if_init = acx_init;
ifp->if_ioctl = acx_ioctl;
@@ -331,7 +325,11 @@ acx_attach(struct acx_softc *sc)
&ic->ic_myaddr[i]);
}
- printf(", address %s\n", ether_sprintf(ic->ic_myaddr));
+ printf("%s: %s, radio %s (0x%02x), EEPROM ver %u, address %s\n",
+ sc->sc_dev.dv_xname,
+ (sc->sc_flags & ACX_FLAG_ACX111) ? "ACX111" : "ACX100",
+ acx_get_rf(sc->sc_radio_type), sc->sc_radio_type,
+ sc->sc_eeprom_ver, ether_sprintf(ic->ic_myaddr));
if_attach(ifp);
ieee80211_ifattach(ifp);