Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=620100cf97a5dd144035e51aeea330d691176489
Commit:     620100cf97a5dd144035e51aeea330d691176489
Parent:     51f2cca1f72db5e272ed79b678b62fb9472e916e
Author:     Jean Delvare <[EMAIL PROTECTED]>
AuthorDate: Tue May 8 17:22:00 2007 +0200
Committer:  Jean Delvare <[EMAIL PROTECTED]>
CommitDate: Tue May 8 17:22:00 2007 +0200

    hwmon/smsc47m1: Use DRVNAME consistently
    
    Also use pr_info instead of printk.
    
    Signed-off-by: Jean Delvare <[EMAIL PROTECTED]>
---
 drivers/hwmon/smsc47m1.c |   14 ++++++--------
 1 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/drivers/hwmon/smsc47m1.c b/drivers/hwmon/smsc47m1.c
index 2237088..7c16c1c 100644
--- a/drivers/hwmon/smsc47m1.c
+++ b/drivers/hwmon/smsc47m1.c
@@ -437,25 +437,23 @@ static int __init smsc47m1_find(unsigned short *addr,
         */
        switch (val) {
        case 0x51:
-               printk(KERN_INFO "smsc47m1: Found SMSC LPC47B27x\n");
+               pr_info(DRVNAME ": Found SMSC LPC47B27x\n");
                sio_data->type = smsc47m1;
                break;
        case 0x59:
-               printk(KERN_INFO "smsc47m1: Found SMSC "
-                      "LPC47M10x/LPC47M112/LPC47M13x\n");
+               pr_info(DRVNAME ": Found SMSC LPC47M10x/LPC47M112/LPC47M13x\n");
                sio_data->type = smsc47m1;
                break;
        case 0x5F:
-               printk(KERN_INFO "smsc47m1: Found SMSC LPC47M14x\n");
+               pr_info(DRVNAME ": Found SMSC LPC47M14x\n");
                sio_data->type = smsc47m1;
                break;
        case 0x60:
-               printk(KERN_INFO "smsc47m1: Found SMSC "
-                      "LPC47M15x/LPC47M192/LPC47M997\n");
+               pr_info(DRVNAME ": Found SMSC LPC47M15x/LPC47M192/LPC47M997\n");
                sio_data->type = smsc47m1;
                break;
        case 0x6B:
-               printk(KERN_INFO "smsc47m1: Found SMSC LPC47M292\n");
+               pr_info(DRVNAME ": Found SMSC LPC47M292\n");
                sio_data->type = smsc47m2;
                break;
        default:
@@ -468,7 +466,7 @@ static int __init smsc47m1_find(unsigned short *addr,
              |  superio_inb(SUPERIO_REG_BASE + 1);
        val = superio_inb(SUPERIO_REG_ACT);
        if (*addr == 0 || (val & 0x01) == 0) {
-               printk(KERN_INFO "smsc47m1: Device is disabled, will not 
use\n");
+               pr_info(DRVNAME ": Device is disabled, will not use\n");
                superio_exit();
                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