diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2017-01-11 16:31:30 +0000 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2017-01-19 15:14:52 +0200 |
commit | 96d179b517a91008f1e335a8c12533a952925ab3 (patch) | |
tree | bec4016032dfec11bbc4d2ba546c60900d23f20f /drivers/net/wireless/ath | |
parent | cd59102779aca33e50967bdb6147334fb298d7ad (diff) |
ath6kl: fix warning for using 0 as NULL
Fixes the following sparse warning:
drivers/net/wireless/ath/ath6kl/sdio.c:716:55: warning:
Using plain integer as NULL pointer
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/sdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/sdio.c b/drivers/net/wireless/ath/ath6kl/sdio.c index 8ec66e74d06d..2195b1b7a8a6 100644 --- a/drivers/net/wireless/ath/ath6kl/sdio.c +++ b/drivers/net/wireless/ath/ath6kl/sdio.c @@ -713,7 +713,7 @@ static void ath6kl_sdio_cleanup_scatter(struct ath6kl *ar) * that the packet is properly freed? */ if (s_req->busrequest) { - s_req->busrequest->scat_req = 0; + s_req->busrequest->scat_req = NULL; ath6kl_sdio_free_bus_req(ar_sdio, s_req->busrequest); } kfree(s_req->virt_dma_buf); |