checking for priv == NULL and using in this case priv->dev
makes no sense.

Signed-off-by: Oleksij Rempel <[email protected]>
---
 drivers/mfd/da9063.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mfd/da9063.c b/drivers/mfd/da9063.c
index b6114a614..a7fff2c5b 100644
--- a/drivers/mfd/da9063.c
+++ b/drivers/mfd/da9063.c
@@ -201,7 +201,7 @@ static int da9062_device_init(struct da9063 *priv)
 
        priv->client1 = i2c_new_dummy(priv->client->adapter,
                                      priv->client->addr + 1);
-       if (!priv) {
+       if (!priv->client1) {
                dev_warn(priv->dev, "failed to create bank 1 device\n");
                /* TODO: return -EINVAL; i2c api does not return more
                 * details */
-- 
2.17.1


_______________________________________________
barebox mailing list
[email protected]
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to