Skip to content

Commit

Permalink
hwmon/w83627ehf: Be quiet when no chip is found
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jean Delvare authored and Mark M. Hoffman committed Jul 19, 2007
1 parent 7cb7273 commit 9f66036
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/hwmon/w83627ehf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 9f66036

Please sign in to comment.