diff options
author | Kalle Valo <kalle.valo@nokia.com> | 2010-02-18 06:25:40 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-02-19 15:52:43 -0500 |
commit | f2054df5170734eacd1db82138c70746ec8387de (patch) | |
tree | 9f7e42ea3a48b1ee2a6df02cefba46ba5630357a /drivers/net/wireless/wl12xx/wl1271_init.c | |
parent | 243eeb51eaa0a33caeff3e2275b2460eea5579ec (diff) |
wl1271: modify wl1271_acx_tid_cfg() to use function parameters
For WMM we need to configure each tid separately so modify
wl1271_acx_tid_cfg() to take the configuration from function parameters
instead.
Signed-off-by: Kalle Valo <kalle.valo@nokia.com>
Reviewed-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl1271_init.c')
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1271_init.c | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271_init.c b/drivers/net/wireless/wl12xx/wl1271_init.c index 2b56a9ecd7f2..78403daab949 100644 --- a/drivers/net/wireless/wl12xx/wl1271_init.c +++ b/drivers/net/wireless/wl12xx/wl1271_init.c | |||
@@ -196,6 +196,7 @@ static int wl1271_init_beacon_broadcast(struct wl1271 *wl) | |||
196 | int wl1271_hw_init(struct wl1271 *wl) | 196 | int wl1271_hw_init(struct wl1271 *wl) |
197 | { | 197 | { |
198 | struct conf_tx_ac_category *conf_ac; | 198 | struct conf_tx_ac_category *conf_ac; |
199 | struct conf_tx_tid *conf_tid; | ||
199 | int ret, i; | 200 | int ret, i; |
200 | 201 | ||
201 | ret = wl1271_cmd_general_parms(wl); | 202 | ret = wl1271_cmd_general_parms(wl); |
@@ -275,9 +276,18 @@ int wl1271_hw_init(struct wl1271 *wl) | |||
275 | goto out_free_memmap; | 276 | goto out_free_memmap; |
276 | 277 | ||
277 | /* Default TID configuration */ | 278 | /* Default TID configuration */ |
278 | ret = wl1271_acx_tid_cfg(wl); | 279 | for (i = 0; i < wl->conf.tx.tid_conf_count; i++) { |
279 | if (ret < 0) | 280 | conf_tid = &wl->conf.tx.tid_conf[i]; |
280 | goto out_free_memmap; | 281 | ret = wl1271_acx_tid_cfg(wl, conf_tid->queue_id, |
282 | conf_tid->channel_type, | ||
283 | conf_tid->tsid, | ||
284 | conf_tid->ps_scheme, | ||
285 | conf_tid->ack_policy, | ||
286 | conf_tid->apsd_conf[0], | ||
287 | conf_tid->apsd_conf[1]); | ||
288 | if (ret < 0) | ||
289 | goto out_free_memmap; | ||
290 | } | ||
281 | 291 | ||
282 | /* Default AC configuration */ | 292 | /* Default AC configuration */ |
283 | for (i = 0; i < wl->conf.tx.ac_conf_count; i++) { | 293 | for (i = 0; i < wl->conf.tx.ac_conf_count; i++) { |