]> Git Repo - linux.git/commitdiff
i2c: Warn on i2c client creation failure
authorJean Delvare <[email protected]>
Sun, 3 Sep 2006 20:25:04 +0000 (22:25 +0200)
committerGreg Kroah-Hartman <[email protected]>
Tue, 26 Sep 2006 22:38:52 +0000 (15:38 -0700)
i2c: Warn on i2c client creation failure

Warn when an i2c client creation fails. If we don't, the user will
never know something wrong happened, as i2c client creation is
typically called through an attach_adapter callback, those return value
we currently ignore for technical reasons.

Signed-off-by: Jean Delvare <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/i2c/i2c-core.c

index 88dd803174a1b446668e193b07669a5a102fe8de..01233f0f7771687951a5dda8e6e2482a0bbaeca5 100644 (file)
@@ -707,11 +707,16 @@ static int i2c_probe_address(struct i2c_adapter *adapter, int addr, int kind,
 
        /* Finally call the custom detection function */
        err = found_proc(adapter, addr, kind);
-
        /* -ENODEV can be returned if there is a chip at the given address
           but it isn't supported by this chip driver. We catch it here as
           this isn't an error. */
-       return (err == -ENODEV) ? 0 : err;
+       if (err == -ENODEV)
+               err = 0;
+
+       if (err)
+               dev_warn(&adapter->dev, "Client creation failed at 0x%x (%d)\n",
+                        addr, err);
+       return err;
 }
 
 int i2c_probe(struct i2c_adapter *adapter,
This page took 0.045706 seconds and 4 git commands to generate.