summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--share/man/man4/bwi.44
-rw-r--r--sys/dev/ic/bwi.c10
2 files changed, 7 insertions, 7 deletions
diff --git a/share/man/man4/bwi.4 b/share/man/man4/bwi.4
index abef22b082e..774af8a7466 100644
--- a/share/man/man4/bwi.4
+++ b/share/man/man4/bwi.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: bwi.4,v 1.2 2007/09/15 06:56:01 mglocker Exp $
+.\" $OpenBSD: bwi.4,v 1.3 2007/09/15 23:36:30 mglocker Exp $
.\"
.\" Copyright (c) 2007 Marcus Glocker <mglocker@openbsd.org>
.\"
@@ -222,7 +222,7 @@ A prepackaged version of the firmware, designed to be used with
.Xr pkg_add 1 ,
can be found at:
.Bd -literal -offset indent
-http://www.nazgul.ch/bwi/bwi-firmware-1.0.tgz
+http://www.nazgul.ch/bwi/bwi-firmware-1.1.tgz
.Ed
.Sh HARDWARE
The following cards are among those supported by the
diff --git a/sys/dev/ic/bwi.c b/sys/dev/ic/bwi.c
index f9dde32b343..35c288b3477 100644
--- a/sys/dev/ic/bwi.c
+++ b/sys/dev/ic/bwi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bwi.c,v 1.24 2007/09/15 22:47:14 mglocker Exp $ */
+/* $OpenBSD: bwi.c,v 1.25 2007/09/15 23:36:30 mglocker Exp $ */
/*
* Copyright (c) 2007 The DragonFly Project. All rights reserved.
@@ -1731,7 +1731,7 @@ bwi_mac_fw_load(struct bwi_mac *mac)
/*
* Get FW file offset
*/
- snprintf(filename, sizeof(filename), "bcm43xx_microcode%d.fw",
+ snprintf(filename, sizeof(filename), "bwi_microcode%d.fw",
mac->mac_rev >= 5 ? 5 : mac->mac_rev);
if (bwi_get_firmware(filename, ucode, size_ucode, &size_fw, &off_fw)
!= 0) {
@@ -1743,7 +1743,7 @@ bwi_mac_fw_load(struct bwi_mac *mac)
/*
* Get PCM file offset
*/
- snprintf(filename, sizeof(filename), "bcm43xx_pcm%d.fw",
+ snprintf(filename, sizeof(filename), "bwi_pcm%d.fw",
mac->mac_rev < 5 ? 4 : 5);
if (bwi_get_firmware(filename, ucode, size_ucode, &size_pcm, &off_pcm)
!= 0) {
@@ -1951,7 +1951,7 @@ bwi_mac_fw_init(struct bwi_mac *mac)
sc->sc_dev.dv_xname, mac->mac_rev);
return (ENODEV);
}
- snprintf(fwname, sizeof(fwname), "bcm43xx_initval%02d.fw", idx);
+ snprintf(fwname, sizeof(fwname), "bwi_initval%02d.fw", idx);
DPRINTF(1, "%s: IV image is %s\n", sc->sc_dev.dv_xname, fwname);
@@ -1982,7 +1982,7 @@ bwi_mac_fw_init(struct bwi_mac *mac)
sc->sc_dev.dv_xname, mac->mac_rev);
return (ENODEV);
}
- snprintf(fwname, sizeof(fwname), "bcm43xx_initval%02d.fw", idx);
+ snprintf(fwname, sizeof(fwname), "bwi_initval%02d.fw", idx);
DPRINTF(1, "%s: extended IV image is %s\n",
sc->sc_dev.dv_xname, fwname);