mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-31 09:51:31 -05:00
mwifiex: enable SDIO multiport aggregation
By default SDIO multiport aggregation is disabled. It's useful to get good throughput results. This patch enables it. Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Bing Zhao <bzhao@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
fa161cb7aa
commit
7d7ab02204
@@ -1630,14 +1630,14 @@ static int mwifiex_init_sdio(struct mwifiex_adapter *adapter)
|
||||
card->mpa_tx.pkt_cnt = 0;
|
||||
card->mpa_tx.start_port = 0;
|
||||
|
||||
card->mpa_tx.enabled = 0;
|
||||
card->mpa_tx.enabled = 1;
|
||||
card->mpa_tx.pkt_aggr_limit = SDIO_MP_AGGR_DEF_PKT_LIMIT;
|
||||
|
||||
card->mpa_rx.buf_len = 0;
|
||||
card->mpa_rx.pkt_cnt = 0;
|
||||
card->mpa_rx.start_port = 0;
|
||||
|
||||
card->mpa_rx.enabled = 0;
|
||||
card->mpa_rx.enabled = 1;
|
||||
card->mpa_rx.pkt_aggr_limit = SDIO_MP_AGGR_DEF_PKT_LIMIT;
|
||||
|
||||
/* Allocate buffers for SDIO MP-A */
|
||||
|
||||
Reference in New Issue
Block a user