Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9f66036b4f95f5e830d68a3ce90aeece0e0c4bf3
Commit:     9f66036b4f95f5e830d68a3ce90aeece0e0c4bf3
Parent:     7cb7273f8ce9c5790a7b64208172b4203977e0a3
Author:     Jean Delvare <[EMAIL PROTECTED]>
AuthorDate: Sun Jun 24 11:23:41 2007 +0200
Committer:  Mark M. Hoffman <[EMAIL PROTECTED]>
CommitDate: Thu Jul 19 14:22:18 2007 -0400

    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 <[EMAIL PROTECTED]>
    Signed-off-by: Mark M. Hoffman <[EMAIL PROTECTED]>
---
 drivers/hwmon/w83627ehf.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/hwmon/w83627ehf.c b/drivers/hwmon/w83627ehf.c
index d2a2613..c51ae2e 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;
        }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to