summaryrefslogtreecommitdiff
path: root/sys/dev/usb
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2006-07-02 02:16:50 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2006-07-02 02:16:50 +0000
commit4bb1f4bec8f58817a0001ddb187b153fcbe497b1 (patch)
tree34d3d90bced468d491c3d214213769275a016f40 /sys/dev/usb
parent4018a2147478a3e7f36b42e579e4191c096a5fb0 (diff)
Send management frames at 1Mbit for better compatibility/chance
of working.
Diffstat (limited to 'sys/dev/usb')
-rw-r--r--sys/dev/usb/if_zyd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_zyd.c b/sys/dev/usb/if_zyd.c
index f063eeeac93..1d51dd6b6c4 100644
--- a/sys/dev/usb/if_zyd.c
+++ b/sys/dev/usb/if_zyd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_zyd.c,v 1.16 2006/07/02 01:25:10 jsg Exp $ */
+/* $OpenBSD: if_zyd.c,v 1.17 2006/07/02 02:16:49 jsg Exp $ */
/*
* Copyright (c) 2006 by Florian Stoehr <ich@florian-stoehr.de>
@@ -3070,7 +3070,7 @@ zyd_tx_mgt(struct zyd_softc *sc, struct mbuf *m0, struct ieee80211_node *ni)
data = &sc->tx_data[0];
desc = (struct zyd_controlsetformat *)data->buf;
- rate = IEEE80211_IS_CHAN_5GHZ(ic->ic_bss->ni_chan) ? 12 : 4;
+ rate = IEEE80211_IS_CHAN_5GHZ(ic->ic_bss->ni_chan) ? 12 : 2;
data->m = m0;
data->ni = ni;