From: Jean Delvare Date: Sun, 24 Jun 2007 09:23:41 +0000 (+0200) Subject: hwmon/w83627ehf: Be quiet when no chip is found X-Git-Tag: v2.6.23-rc1~258^2~3 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=9f66036b4f95f5e830d68a3ce90aeece0e0c4bf3;p=linux.git 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 Signed-off-by: Mark M. Hoffman --- diff --git a/drivers/hwmon/w83627ehf.c b/drivers/hwmon/w83627ehf.c index d2a26135b313..c51ae2e17758 100644 --- a/drivers/hwmon/w83627ehf.c +++ b/drivers/hwmon/w83627ehf.c @@ -1445,8 +1445,9 @@ static int __init w83627ehf_find(int sioaddr, unsigned short *addr, sio_name = sio_name_W83627DHG; break; default: - pr_info(DRVNAME ": unsupported chip ID: 0x%04x\n", - val); + if (val != 0xffff) + pr_debug(DRVNAME ": unsupported chip ID: 0x%04x\n", + val); superio_exit(sioaddr); return -ENODEV; }