diff options
author | Guenter Roeck <linux@roeck-us.net> | 2021-12-23 08:49:59 +0100 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2022-02-28 02:03:16 +0100 |
commit | 4d63c2d31a8f4c68458422fc5d0639a16237b426 (patch) | |
tree | c6d2786377c2914f1e603e15107bc47663b68126 /drivers/hwmon/lm83.c | |
parent | hwmon: (lm83) Replace temperature conversion macros with standard functions (diff) | |
download | linux-4d63c2d31a8f4c68458422fc5d0639a16237b426.tar.xz linux-4d63c2d31a8f4c68458422fc5d0639a16237b426.zip |
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: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/lm83.c')
-rw-r--r-- | drivers/hwmon/lm83.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hwmon/lm83.c b/drivers/hwmon/lm83.c index 434bd5b903d2..82d7ef264f6f 100644 --- a/drivers/hwmon/lm83.c +++ b/drivers/hwmon/lm83.c @@ -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; } |