1
0
Fork 0

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>
hifive-unleashed-5.1
Jean Delvare 2007-06-24 11:23:41 +02:00 committed by Mark M. Hoffman
parent 7cb7273f8c
commit 9f66036b4f
1 changed files with 3 additions and 2 deletions

View File

@ -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;
}