Changeset 2192
- Timestamp:
- 12/29/03 20:26:17 (9 years ago)
- Location:
- lm-sensors/trunk/kernel/chips
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/chips/lm83.c
r2123 r2192 80 80 81 81 /* 82 * Conversions , initial valuesand various macros82 * Conversions and various macros 83 83 * The LM83 uses signed 8-bit values. 84 84 */ … … 286 286 { 287 287 #ifdef DEBUG 288 printk( "lm83.o: LM83 detection failed at 0x%02x.\n",288 printk(KERN_DEBUG "lm83.o: Detection failed at 0x%02x.\n", 289 289 address); 290 290 #endif … … 413 413 i2c_smbus_read_byte_data(client, LM83_REG_R_STATUS1) + 414 414 (i2c_smbus_read_byte_data(client, LM83_REG_R_STATUS2) << 8); 415 415 416 data->last_updated = jiffies; 416 417 data->valid = 1; -
lm-sensors/trunk/kernel/chips/lm90.c
r2069 r2192 2 2 * lm90.c - Part of lm_sensors, Linux kernel modules for hardware 3 3 * monitoring 4 * Copyright ( c) 2003 Jean Delvare <khali@linux-fr.org>4 * Copyright (C) 2003 Jean Delvare <khali@linux-fr.org> 5 5 * 6 6 * Based on the lm83 driver. The LM90 is a sensor chip made by National … … 99 99 100 100 /* 101 * Conversions , initial valuesand various macros101 * Conversions and various macros 102 102 * The LM90 uses signed 8-bit values for the local temperatures, 103 103 * and signed 11-bit values for the remote temperatures (except … … 139 139 * Driver data (common to all clients) 140 140 */ 141 141 142 142 static struct i2c_driver lm90_driver = { 143 143 .owner = THIS_MODULE, … … 230 230 * succeeds, it also registers the new chip. 231 231 */ 232 233 232 static int lm90_detect(struct i2c_adapter *adapter, int address, 234 233 unsigned short flags, int kind) … … 299 298 { 300 299 #ifdef DEBUG 301 printk( "lm90.o: Detection failed at 0x%02x.\n",300 printk(KERN_DEBUG "lm90.o: Detection failed at 0x%02x.\n", 302 301 address); 303 302 #endif … … 414 413 415 414 /* 416 * Start sthe conversions.415 * Start the conversions. 417 416 */ 418 417
