Changeset 4651
- Timestamp:
- 08/11/07 09:30:31 (1 year ago)
- Files:
-
- lm-sensors/trunk/kernel/chips/adm1024.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/adm1025.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/adm1026.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/adm9240.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/ds1621.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/gl518sm.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/gl520sm.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/it87.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/lm63.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/lm75.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/lm78.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/lm80.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/lm85.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/ltc1710.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/pca954x.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/thmc50.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/w83781d.c (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/w83792d.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/kernel/chips/adm1024.c
r4328 r4651 362 362 } else { 363 363 #ifdef DEBUG 364 printk("adm1024.o: Internal error: unknown kind (%d) ?!?",364 printk("adm1024.o: Internal error: unknown kind (%d)\n", 365 365 kind); 366 366 #endif lm-sensors/trunk/kernel/chips/adm1025.c
r4328 r4651 312 312 } else { 313 313 #ifdef DEBUG 314 printk("adm1025.o: Internal error: unknown kind (%d) ?!?",314 printk("adm1025.o: Internal error: unknown kind (%d)\n", 315 315 kind); 316 316 #endif lm-sensors/trunk/kernel/chips/adm1026.c
r4542 r4651 712 712 #endif 713 713 default : 714 printk("adm1026: Internal error, invalid kind (%d)! ", kind);714 printk("adm1026: Internal error, invalid kind (%d)!\n", kind); 715 715 err = -EFAULT ; 716 716 goto ERROR1; lm-sensors/trunk/kernel/chips/adm9240.c
r3145 r4651 357 357 } else { 358 358 #ifdef DEBUG 359 printk("adm9240.o: Internal error: unknown kind (%d) ?!?",359 printk("adm9240.o: Internal error: unknown kind (%d)\n", 360 360 kind); 361 361 #endif lm-sensors/trunk/kernel/chips/ds1621.c
r3156 r4651 232 232 } else { 233 233 #ifdef DEBUG 234 printk("ds1621.o: Internal error: unknown kind (%d) ?!?",234 printk("ds1621.o: Internal error: unknown kind (%d)\n", 235 235 kind); 236 236 #endif lm-sensors/trunk/kernel/chips/gl518sm.c
r3147 r4651 325 325 } else { 326 326 #ifdef DEBUG 327 printk("gl518sm.o: Internal error: unknown kind (%d) ?!?",327 printk("gl518sm.o: Internal error: unknown kind (%d)\n", 328 328 kind); 329 329 #endif lm-sensors/trunk/kernel/chips/gl520sm.c
r3000 r4651 309 309 } else { 310 310 #ifdef DEBUG 311 printk("gl520sm.o: Internal error: unknown kind (%d) ?!?",311 printk("gl520sm.o: Internal error: unknown kind (%d)\n", 312 312 kind); 313 313 #endif lm-sensors/trunk/kernel/chips/it87.c
r4565 r4651 552 552 } else { 553 553 #ifdef DEBUG 554 printk("it87.o: Internal error: unknown kind (%d) ?!?",554 printk("it87.o: Internal error: unknown kind (%d)\n", 555 555 kind); 556 556 #endif lm-sensors/trunk/kernel/chips/lm63.c
r2994 r4651 357 357 if (data->config & 0x40) { /* standby */ 358 358 #ifdef DEBUG 359 printk(KERN_DEBUG "lm63: Switching to operational mode ");359 printk(KERN_DEBUG "lm63: Switching to operational mode\n"); 360 360 #endif 361 361 data->config &= 0xA7; lm-sensors/trunk/kernel/chips/lm75.c
r3156 r4651 185 185 client_name = "LM75 chip"; 186 186 } else { 187 pr_debug("lm75.o: Internal error: unknown kind (%d) ?!?", kind);187 pr_debug("lm75.o: Internal error: unknown kind (%d)\n", kind); 188 188 goto error1; 189 189 } lm-sensors/trunk/kernel/chips/lm78.c
r4328 r4651 362 362 } else { 363 363 #ifdef DEBUG 364 printk("lm78.o: Internal error: unknown kind (%d) ?!?",364 printk("lm78.o: Internal error: unknown kind (%d)\n", 365 365 kind); 366 366 #endif lm-sensors/trunk/kernel/chips/lm80.c
r3156 r4651 291 291 } else { 292 292 #ifdef DEBUG 293 printk("lm80.o: Internal error: unknown kind (%d) ?!?",293 printk("lm80.o: Internal error: unknown kind (%d)\n", 294 294 kind); 295 295 #endif lm-sensors/trunk/kernel/chips/lm85.c
r4574 r4651 869 869 break; 870 870 default : 871 printk("lm85: Internal error, invalid kind (%d)! ", kind);871 printk("lm85: Internal error, invalid kind (%d)!\n", kind); 872 872 err = -EFAULT ; 873 873 goto ERROR1; lm-sensors/trunk/kernel/chips/ltc1710.c
r2867 r4651 175 175 } else { 176 176 #ifdef DEBUG 177 printk("ltc1710.o: Internal error: unknown kind (%d) ?!?",177 printk("ltc1710.o: Internal error: unknown kind (%d)\n", 178 178 kind); 179 179 #endif lm-sensors/trunk/kernel/chips/pca954x.c
r2837 r4651 344 344 } 345 345 if (i < 0) { 346 printk(KERN_ERR "%s: Internal error: unknown kind (%d) ",346 printk(KERN_ERR "%s: Internal error: unknown kind (%d)\n", 347 347 __FUNCTION__, kind); 348 348 goto ERROR1; lm-sensors/trunk/kernel/chips/thmc50.c
r4558 r4651 222 222 } else { 223 223 #ifdef DEBUG 224 printk("thmc50.o: Internal error: unknown kind (%d) ?!?",224 printk("thmc50.o: Internal error: unknown kind (%d)\n", 225 225 kind); 226 226 #endif lm-sensors/trunk/kernel/chips/w83781d.c
r4328 r4651 890 890 } else { 891 891 #ifdef DEBUG 892 printk(KERN_ERR "w83781d.o: Internal error: unknown kind (%d) ?!?",892 printk(KERN_ERR "w83781d.o: Internal error: unknown kind (%d)\n", 893 893 kind); 894 894 #endif lm-sensors/trunk/kernel/chips/w83792d.c
r4040 r4651 691 691 client_name = "W83792D chip"; 692 692 } else { 693 printk(KERN_ERR "w83792d: Internal error: unknown kind (%d) ?!?",693 printk(KERN_ERR "w83792d: Internal error: unknown kind (%d)\n", 694 694 kind); 695 695 LEAVE()
