]> asedeno.scripts.mit.edu Git - linux.git/commit
mt76: fix return value check in mt76_wmac_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Mon, 4 Mar 2019 01:10:00 +0000 (01:10 +0000)
committerFelix Fietkau <nbd@nbd.name>
Thu, 7 Mar 2019 11:50:23 +0000 (12:50 +0100)
commit7c1b998d3483acf785c45035c0e14a62023f1edb
tree79534305973c02ad687c2fd51c2b133446ad45c0
parentb126c889743513543d007ac1c5c82b61ef003133
mt76: fix return value check in mt76_wmac_probe()

In case of error, the function devm_ioremap_resource() returns ERR_PTR()
and never returns NULL. The NULL test in the return value check should
be replaced with IS_ERR().

Fixes: c8846e101502 ("mt76: add driver for MT7603E and MT7628/7688")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7603/soc.c