rsi: sdio changes to support BT
Queue number is correctly updated for BT traffic. Also, kzalloc instead of kmalloc is used for Rx packet allocation. Signed-off-by: Prameela Rani Garnepudi <prameela.j04cs@gmail.com> Signed-off-by: Amitkumar Karwar <amit.karwar@redpinesignals.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
898b255339
commit
681805b140
@ -763,6 +763,8 @@ static int rsi_sdio_host_intf_write_pkt(struct rsi_hw *adapter,
|
||||
int status;
|
||||
|
||||
queueno = ((pkt[1] >> 4) & 0xf);
|
||||
if (queueno == RSI_BT_MGMT_Q || queueno == RSI_BT_DATA_Q)
|
||||
queueno = RSI_BT_Q;
|
||||
|
||||
num_blocks = len / block_size;
|
||||
|
||||
|
@ -103,7 +103,7 @@ static int rsi_process_pkt(struct rsi_common *common)
|
||||
|
||||
rcv_pkt_len = (num_blks * 256);
|
||||
|
||||
common->rx_data_pkt = kmalloc(rcv_pkt_len, GFP_KERNEL);
|
||||
common->rx_data_pkt = kzalloc(rcv_pkt_len, GFP_KERNEL);
|
||||
if (!common->rx_data_pkt) {
|
||||
rsi_dbg(ERR_ZONE, "%s: Failed in memory allocation\n",
|
||||
__func__);
|
||||
|
Loading…
Reference in New Issue
Block a user