summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorcegger <cegger@NetBSD.org>2009-01-10 12:57:50 +0000
committercegger <cegger@NetBSD.org>2009-01-10 12:57:50 +0000
commit13175d24c8a8bd8d040030437ea1dd6d932a926d (patch)
treef6ad8862d0e2957c4da4d6c52dc9c0895a3929e2 /sys/dev
parent48a2c14752fdd6f1ce5a317558b0b3d5c328ea45 (diff)
BCM4328 has MAC rev 12.
XXX Driver now tells me, this chip has unsupported PHY type 4.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/bwi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/bwi.c b/sys/dev/ic/bwi.c
index 8b47a22ebe6..c4fea5d2733 100644
--- a/sys/dev/ic/bwi.c
+++ b/sys/dev/ic/bwi.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bwi.c,v 1.2 2009/01/09 20:49:42 macallan Exp $ */
+/* $NetBSD: bwi.c,v 1.3 2009/01/10 12:57:50 cegger Exp $ */
/* $OpenBSD: bwi.c,v 1.74 2008/02/25 21:13:30 mglocker Exp $ */
/*
@@ -49,7 +49,7 @@
#include "bpfilter.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bwi.c,v 1.2 2009/01/09 20:49:42 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bwi.c,v 1.3 2009/01/10 12:57:50 cegger Exp $");
#include <sys/param.h>
#include <sys/callout.h>
@@ -407,7 +407,7 @@ static uint16_t bwi_ieee80211_txtime(struct ieee80211com *,
struct ieee80211_node *, uint, uint8_t, uint32_t);
/* MAC */
-static const uint8_t bwi_sup_macrev[] = { 2, 4, 5, 6, 7, 9, 10 };
+static const uint8_t bwi_sup_macrev[] = { 2, 4, 5, 6, 7, 9, 10, 12 };
/* PHY */
#define SUP_BPHY(num) { .rev = num, .init = bwi_phy_init_11b_rev##num }