i2c-algo-bit: Be verbose on bus testing failure
If bus testing fails due to the bus being seen as busy, it might be helpful for developers to know which line is unexpectedly low. Signed-off-by: Jean Delvare <jdelvare@suse.de> Reviewed-by: Alex Deucher <alexdeucher@gmail.com>
This commit is contained in:
parent
1bddab7f7d
commit
f6beb67d8e
@ -250,7 +250,9 @@ static int test_bus(struct i2c_adapter *i2c_adap)
|
||||
sda = getsda(adap);
|
||||
scl = (adap->getscl == NULL) ? 1 : getscl(adap);
|
||||
if (!scl || !sda) {
|
||||
printk(KERN_WARNING "%s: bus seems to be busy\n", name);
|
||||
printk(KERN_WARNING
|
||||
"%s: bus seems to be busy (scl=%d, sda=%d)\n",
|
||||
name, scl, sda);
|
||||
goto bailout;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user