net: qcom/emac: fix return value check in emac_sgmii_config()
authorWei Yongjun <weiyongjun1@huawei.com>
Sat, 1 Oct 2016 09:12:29 +0000 (09:12 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 4 Oct 2016 01:53:03 +0000 (21:53 -0400)
commit0fd7d43fbc4aaf358005231a6bed27eb1c2f60c3
tree85e647d9d49add35a16f454521c217cea7e2a29b
parentb6a7920848cab619b5e434fdc0338778c63ef3f3
net: qcom/emac: fix return value check in emac_sgmii_config()

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

Also add check for return value of platform_get_resource().

Fixes: 54e19bc74f33 ("net: qcom/emac: do not use devm on internal
phy pdev")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Timur Tabi <timur@codeaurora.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qualcomm/emac/emac-sgmii.c