i2c: bcm-kona: Fix return value in probe()
authorzhaoxiao <long870912@gmail.com>
Mon, 6 Sep 2021 05:27:30 +0000 (13:27 +0800)
committerWolfram Sang <wsa@kernel.org>
Wed, 29 Sep 2021 21:05:05 +0000 (23:05 +0200)
When call function devm_platform_ioremap_resource(), we should use IS_ERR()
to check the return value and return PTR_ERR() if failed.

Signed-off-by: zhaoxiao <long870912@gmail.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
drivers/i2c/busses/i2c-bcm-kona.c

index ed5e127..8e350f2 100644 (file)
@@ -763,7 +763,7 @@ static int bcm_kona_i2c_probe(struct platform_device *pdev)
        /* Map hardware registers */
        dev->base = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(dev->base))
-               return -ENOMEM;
+               return PTR_ERR(dev->base);
 
        /* Get and enable external clock */
        dev->external_clk = devm_clk_get(dev->device, NULL);