gpio: Fix error checking in the function device_pca957x_init
authorNicholas Krause <xerofoify@gmail.com>
Wed, 26 Aug 2015 21:52:19 +0000 (17:52 -0400)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 2 Oct 2015 11:19:34 +0000 (04:19 -0700)
This fixes error checking in the function device_pca957x_init
to properly check and return error code values from the calls
to the function pca953x_write_regs if they fail as to properly
signal callers when a error occurs due a failure when writing
registers for this gpio based device.

Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
Reviewed-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-pca953x.c

index 50caeb1ee3509da04b57d38dd332396e76ea25de..4e5745d3282896d21d3098e1355d8b17bfcea147 100644 (file)
@@ -635,11 +635,15 @@ static int device_pca957x_init(struct pca953x_chip *chip, u32 invert)
                memset(val, 0xFF, NBANK(chip));
        else
                memset(val, 0, NBANK(chip));
-       pca953x_write_regs(chip, PCA957X_INVRT, val);
+       ret = pca953x_write_regs(chip, PCA957X_INVRT, val);
+       if (ret)
+               goto out;
 
        /* To enable register 6, 7 to control pull up and pull down */
        memset(val, 0x02, NBANK(chip));
-       pca953x_write_regs(chip, PCA957X_BKEN, val);
+       ret = pca953x_write_regs(chip, PCA957X_BKEN, val);
+       if (ret)
+               goto out;
 
        return 0;
 out:
This page took 0.034018 seconds and 5 git commands to generate.