Changeset 4323
- Timestamp:
- 02/15/07 11:36:29 (2 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/kernel/busses/i2c-ali1563.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r4322 r4323 5 5 Man page i2cdetect.8: Scanning range can be restricted 6 6 Module bmcsensors: Fix debugging messages 7 Module i2c-ali1563: Improve the status messages (2.6 backport) 7 8 Module i2c-amd8111: Cleanups (2.6 backport) 8 9 Fix initialization race (2.6 backport) lm-sensors/trunk/kernel/busses/i2c-ali1563.c
r3149 r4323 341 341 342 342 pci_read_config_word(dev,ALI1563_SMBBA,&ctrl); 343 printk(KERN_DEBUG "ali1563: SMBus control = %04x\n",ctrl);344 343 345 344 /* Check if device is even enabled first */ … … 366 365 if (!request_region(ali1563_smba, ALI1563_SMB_IOSIZE, 367 366 ali1563_pci_driver.name)) { 368 printk(KERN_WARNING "ali1563: Could not allocate I/O space"); 367 printk(KERN_WARNING "ali1563: Could not allocate I/O space " 368 "at 0x%04x\n", ali1563_smba); 369 369 goto Err; 370 370 } 371 printk(KERN_INFO "ali1563: Found ALi1563 SMBus at 0x%04x\n", 372 ali1563_smba); 371 373 372 374 return 0; … … 412 414 int error; 413 415 414 if ((error = ali1563_setup(dev))){ 416 if ((error = ali1563_setup(dev))) { 417 printk(KERN_WARNING "ali1563: ALi1563 SMBus probe failed " 418 "(%d)\n", error); 415 419 return error; 416 420 } … … 419 423 if ((error = i2c_add_adapter(&ali1563_adapter))) 420 424 ali1563_shutdown(dev); 421 printk(KERN_DEBUG "%s: Returning %d\n",__FUNCTION__,error);422 425 return error; 423 426 }
