From: Wei Yongjun Date: Fri, 21 Sep 2012 07:19:09 +0000 (+0800) Subject: ARM: pxa: fix return value check in pxa2xx_drv_pcmcia_probe() X-Git-Tag: accepted/tizen/common/20141203.182822~3730^2~2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e09a716490dbce0b9b7d132d191f1f8785cb5df2;p=platform%2Fkernel%2Flinux-arm64.git ARM: pxa: fix return value check in pxa2xx_drv_pcmcia_probe() In case of error, the function clk_get() returns ERR_PTR() and never returns NULL pointer. The NULL test in the error handling should be replaced with IS_ERR(). dpatch engine is used to auto generated this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun Acked-by: Eric Miao Signed-off-by: Haojian Zhuang --- diff --git a/drivers/pcmcia/pxa2xx_base.c b/drivers/pcmcia/pxa2xx_base.c index 490bb82..cfec9dd 100644 --- a/drivers/pcmcia/pxa2xx_base.c +++ b/drivers/pcmcia/pxa2xx_base.c @@ -297,7 +297,7 @@ static int pxa2xx_drv_pcmcia_probe(struct platform_device *dev) } clk = clk_get(&dev->dev, NULL); - if (!clk) + if (IS_ERR(clk)) return -ENODEV; pxa2xx_drv_pcmcia_ops(ops);