This fixes bug #8593: http://bugzilla.kernel.org/show_bug.cgi?id=8593 Signed-off-by: Jean Delvare <khali at linux-fr.org> --- drivers/hwmon/w83627ehf.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- linux-2.6.22-rc5.orig/drivers/hwmon/w83627ehf.c 2007-06-24 10:46:24.000000000 +0200 +++ linux-2.6.22-rc5/drivers/hwmon/w83627ehf.c 2007-06-24 10:48:34.000000000 +0200 @@ -1445,8 +1445,9 @@ static int __init w83627ehf_find(int sio 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; } -- Jean Delvare