Commit 4d63c2d3 authored by Guenter Roeck's avatar Guenter Roeck

hwmon: (lm83) Demote log message if chip identification fails

There should be no message in the kernel function if the detect function
fails to identify a chip; this is perfectly normal and does not warrant
a kernel log entry. Demote message to debug.
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 362c5663
......@@ -341,9 +341,9 @@ static int lm83_detect(struct i2c_client *client,
break;
default:
/* identification failed */
dev_info(&adapter->dev,
"Unsupported chip (man_id=0x%02X, chip_id=0x%02X)\n",
man_id, chip_id);
dev_dbg(&adapter->dev,
"Unsupported chip (man_id=0x%02X, chip_id=0x%02X)\n",
man_id, chip_id);
return -ENODEV;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment