Commit 9f66036b4f95f5e830d68a3ce90aeece0e0c4bf3

Authored by Jean Delvare
Committed by Mark M. Hoffman
1 parent 7cb7273f8c

hwmon/w83627ehf: Be quiet when no chip is found

This fixes bug #8593:
http://bugzilla.kernel.org/show_bug.cgi?id=8593

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>

Showing 1 changed file with 3 additions and 2 deletions Side-by-side Diff

drivers/hwmon/w83627ehf.c
... ... @@ -1445,8 +1445,9 @@
1445 1445 sio_name = sio_name_W83627DHG;
1446 1446 break;
1447 1447 default:
1448   - pr_info(DRVNAME ": unsupported chip ID: 0x%04x\n",
1449   - val);
  1448 + if (val != 0xffff)
  1449 + pr_debug(DRVNAME ": unsupported chip ID: 0x%04x\n",
  1450 + val);
1450 1451 superio_exit(sioaddr);
1451 1452 return -ENODEV;
1452 1453 }