aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/wl12xx/acx.c
diff options
context:
space:
mode:
authorArik Nemtsov <arik@wizery.com>2010-11-08 10:51:07 +0100
committerLuciano Coelho <luciano.coelho@nokia.com>2010-11-22 16:45:13 +0200
commit68d069c45f73e8aeda0249891daec1f7e2f0e067 (patch)
tree03780680ec225b9428a5de30a4e50ad3b0230657 /drivers/net/wireless/wl12xx/acx.c
parentfa97f46b30357a50f3ee193e6f82864f95bc55ec (diff)
downloadkernel_samsung_smdk4412-68d069c45f73e8aeda0249891daec1f7e2f0e067.zip
kernel_samsung_smdk4412-68d069c45f73e8aeda0249891daec1f7e2f0e067.tar.gz
kernel_samsung_smdk4412-68d069c45f73e8aeda0249891daec1f7e2f0e067.tar.bz2
wl1271: add support for HW TX fragmentation
Indicate to mac80211 we support HW fragmentation. Support updates of the fragmentation threshold via the set_frag_threshold callback. Signed-off-by: Arik Nemtsov <arik@wizery.com> Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/acx.c')
-rw-r--r--drivers/net/wireless/wl12xx/acx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/wl12xx/acx.c b/drivers/net/wireless/wl12xx/acx.c
index bc1085b..7cbaeb6 100644
--- a/drivers/net/wireless/wl12xx/acx.c
+++ b/drivers/net/wireless/wl12xx/acx.c
@@ -862,7 +862,7 @@ out:
return ret;
}
-int wl1271_acx_frag_threshold(struct wl1271 *wl)
+int wl1271_acx_frag_threshold(struct wl1271 *wl, u16 frag_threshold)
{
struct acx_frag_threshold *acx;
int ret = 0;
@@ -876,7 +876,7 @@ int wl1271_acx_frag_threshold(struct wl1271 *wl)
goto out;
}
- acx->frag_threshold = cpu_to_le16(wl->conf.tx.frag_threshold);
+ acx->frag_threshold = cpu_to_le16(frag_threshold);
ret = wl1271_cmd_configure(wl, ACX_FRAG_CFG, acx, sizeof(*acx));
if (ret < 0) {
wl1271_warning("Setting of frag threshold failed: %d", ret);