aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorChristian Lamparter <chunkeey@web.de>2008-08-07 04:22:28 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-08-07 09:49:04 -0400
commit5423b2ed25993e13009ce39f55d742c3c6d03edb (patch)
tree8dc807d7ffe38266cbd3830acb8c0c22702010e3 /drivers
parent0fc980392e5a06cff34ca7acaac5790bb59528d1 (diff)
p54: swap short slot time dcf values
these "magic" values must to be the other way round... Signed-off-by: Christian Lamparter <chunkeey@web.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/p54/p54common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/p54/p54common.c b/drivers/net/wireless/p54/p54common.c
index 2d2d33612aef..83cd85e1f847 100644
--- a/drivers/net/wireless/p54/p54common.c
+++ b/drivers/net/wireless/p54/p54common.c
@@ -817,8 +817,8 @@ static void p54_set_vdcf(struct ieee80211_hw *dev)
817 817
818 if (dev->conf.flags & IEEE80211_CONF_SHORT_SLOT_TIME) { 818 if (dev->conf.flags & IEEE80211_CONF_SHORT_SLOT_TIME) {
819 vdcf->slottime = 9; 819 vdcf->slottime = 9;
820 vdcf->magic1 = 0x00; 820 vdcf->magic1 = 0x10;
821 vdcf->magic2 = 0x10; 821 vdcf->magic2 = 0x00;
822 } else { 822 } else {
823 vdcf->slottime = 20; 823 vdcf->slottime = 20;
824 vdcf->magic1 = 0x0a; 824 vdcf->magic1 = 0x0a;