Changeset 5307
- Timestamp:
- 07/15/08 23:09:38 (1 month ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/kernel/busses/i2c-i801.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r5306 r5307 5 5 Library: Avoid namespace pollution 6 6 Module i2c-i801: Remove verbose debugging messages (2.6 backport) 7 Properly report bus arbitration lost (2.6 backport) 7 8 Module i2c-piix4: Minor cleanups (2.6 backport) 8 9 Program sensors-detect: Add VIA VT1212 support lm-sensors/trunk/kernel/busses/i2c-i801.c
r5306 r5307 291 291 if (temp & 0x08) { 292 292 result = -1; 293 dev_err(I801_dev, "Bus collision! SMBus may be locked " 294 "until next hard reset. (sorry!)\n"); 295 /* Clock stops and slave is stuck in mid-transmission */ 293 dev_err(I801_dev, "Lost arbitration\n"); 296 294 } 297 295 … … 406 404 } else if (temp & 0x08) { 407 405 result = -1; 408 dev_err(I801_dev, " Bus collision!\n");406 dev_err(I801_dev, "Lost arbitration\n"); 409 407 } else if (temp & 0x04) { 410 408 result = -1;
