Changeset 3215
- Timestamp:
- 12/13/05 20:53:22 (3 years ago)
- Files:
-
- lm-sensors/trunk/kernel/chips/f71805f.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/kernel/chips/f71805f.c
r3214 r3215 279 279 reg = f71805f_read8(client, F71805F_REG_START); 280 280 if ((reg & 0x41) != 0x01) { 281 printk(KERN_DEBUG "%s: Starting monitoring operations\n",282 DRVNAME);281 printk(KERN_DEBUG DRVNAME ": Starting monitoring " 282 "operations\n"); 283 283 f71805f_write8(client, 284 284 F71805F_REG_START, (reg | 0x01) & ~0x40); … … 363 363 i2c_deregister_entry(data->sysctl_id); 364 364 if ((err = i2c_detach_client(client))) { 365 printk(KERN_ERR "%s: Client deregistration failed, "366 "client not detached\n" , DRVNAME);365 printk(KERN_ERR DRVNAME ": Client deregistration failed, " 366 "client not detached\n"); 367 367 return err; 368 368 } … … 705 705 devid = superio_inw(sioaddr, SIO_REG_DEVID); 706 706 if (devid != SIO_F71805F_ID) { 707 printk(KERN_INFO "%s: Unsupported Fintek device, "708 "skipping\n" , DRVNAME);707 printk(KERN_INFO DRVNAME ": Unsupported Fintek device, " 708 "skipping\n"); 709 709 goto exit; 710 710 } … … 712 712 superio_select(sioaddr, F71805F_LD_HWM); 713 713 if (!(superio_inb(sioaddr, SIO_REG_ENABLE) & 0x01)) { 714 printk(KERN_WARNING "%s: Device not activated, skipping\n",715 DRVNAME);714 printk(KERN_WARNING DRVNAME ": Device not activated, " 715 "skipping\n"); 716 716 goto exit; 717 717 } … … 719 719 *address = superio_inw(sioaddr, SIO_REG_ADDR); 720 720 if (*address == 0) { 721 printk(KERN_WARNING "%s: Base address not set, skipping\n",722 DRVNAME);721 printk(KERN_WARNING DRVNAME ": Base address not set, " 722 "skipping\n"); 723 723 goto exit; 724 724 } 725 725 726 726 err = 0; 727 printk(KERN_INFO "%s: Found F71805F chip at %#x, revision %u\n",728 DRVNAME,*address, superio_inb(sioaddr, SIO_REG_DEVREV));727 printk(KERN_INFO DRVNAME ": Found F71805F chip at %#x, revision %u\n", 728 *address, superio_inb(sioaddr, SIO_REG_DEVREV)); 729 729 730 730 exit:
