mirror of https://gitee.com/openkylin/linux.git
ath6kl: Minor cleanup in ath6kldev_submit_scat_req()
Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
parent
ca06cadb73
commit
23b7840a1b
|
@ -191,16 +191,13 @@ int ath6kldev_submit_scat_req(struct ath6kl_device *dev,
|
||||||
scat_req->addr, !read ? "async" : "sync",
|
scat_req->addr, !read ? "async" : "sync",
|
||||||
(read) ? "rd" : "wr");
|
(read) ? "rd" : "wr");
|
||||||
|
|
||||||
if (!read && scat_req->virt_scat)
|
if (!read && scat_req->virt_scat) {
|
||||||
status = ath6kldev_cp_scat_dma_buf(scat_req, false);
|
status = ath6kldev_cp_scat_dma_buf(scat_req, false);
|
||||||
|
if (status) {
|
||||||
if (status) {
|
|
||||||
if (!read) {
|
|
||||||
scat_req->status = status;
|
scat_req->status = status;
|
||||||
scat_req->complete(dev->ar->htc_target, scat_req);
|
scat_req->complete(dev->ar->htc_target, scat_req);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return status;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
status = ath6kl_hif_scat_req_rw(dev->ar, scat_req);
|
status = ath6kl_hif_scat_req_rw(dev->ar, scat_req);
|
||||||
|
|
Loading…
Reference in New Issue