diff mbox

i2c: Improve logging on failure to probe for ->class devices

Message ID 7416fe787fbbe867a2a980b3a2e2de6cec7bf5f6.1374092773.git.luto@amacapital.net
State Accepted
Headers show

Commit Message

Andy Lutomirski July 17, 2013, 8:27 p.m. UTC
While writing the i2c-imc driver, I noticed that the warning message
when the i2c core can't figure out how to probe is mostly useless.
This trivial patch improves it.

Signed-off-by: Andy Lutomirski <luto@amacapital.net>
---
 drivers/i2c/i2c-core.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Wolfram Sang Aug. 15, 2013, 12:51 p.m. UTC | #1
On Wed, Jul 17, 2013 at 01:27:59PM -0700, Andy Lutomirski wrote:
> While writing the i2c-imc driver, I noticed that the warning message
> when the i2c core can't figure out how to probe is mostly useless.
> This trivial patch improves it.
> 
> Signed-off-by: Andy Lutomirski <luto@amacapital.net>

Applied to for-next, thanks!
diff mbox

Patch

diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c
index 991d38d..213df0a 100644
--- a/drivers/i2c/i2c-core.c
+++ b/drivers/i2c/i2c-core.c
@@ -1502,7 +1502,8 @@  static int i2c_default_probe(struct i2c_adapter *adap, unsigned short addr)
 		err = i2c_smbus_xfer(adap, addr, 0, I2C_SMBUS_READ, 0,
 				     I2C_SMBUS_BYTE, &dummy);
 	else {
-		dev_warn(&adap->dev, "No suitable probing method supported\n");
+		dev_warn(&adap->dev, "No suitable probing method supported for address 0x%02X\n",
+			 addr);
 		err = -EOPNOTSUPP;
 	}