diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-10-01 12:58:42 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-10-01 12:58:42 +0000 |
commit | 6fa02b9cdec302c85bd3795c94ffc5098b900a0b (patch) | |
tree | 60b5923b829d0a9a4e71d0e9240c22aa9043a038 /sys | |
parent | 7245631a9f7dfd3980371dac88c6e405f7b99d5a (diff) |
Print the MAC address.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/bwi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/bwi.c b/sys/dev/ic/bwi.c index b28db1ccde1..581428d13b3 100644 --- a/sys/dev/ic/bwi.c +++ b/sys/dev/ic/bwi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bwi.c,v 1.56 2007/10/01 12:44:33 jsg Exp $ */ +/* $OpenBSD: bwi.c,v 1.57 2007/10/01 12:58:41 jsg Exp $ */ /* * Copyright (c) 2007 The DragonFly Project. All rights reserved. @@ -619,8 +619,6 @@ bwi_attach(struct bwi_softc *sc) struct bwi_phy *phy; int i, error; - printf("\n"); - /* AMRR rate control */ sc->sc_amrr.amrr_min_success_threshold = 1; sc->sc_amrr.amrr_max_success_threshold = 15; @@ -753,6 +751,8 @@ bwi_attach(struct bwi_softc *sc) } else panic("unknown phymode %d\n", phy->phy_mode); + printf(", address %s\n", ether_sprintf(ic->ic_myaddr)); + sc->sc_fw_version = BWI_FW_VERSION3; sc->sc_dwell_time = 200; |