Changeset 283
- Timestamp:
- 02/28/99 22:11:14 (14 years ago)
- Location:
- lm-sensors/trunk/kernel/chips
- Files:
-
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/chips/adm9240.c
r193 r283 312 312 313 313 err = 0; 314 /* Make sure we aren't probing the ISA bus!! */ 315 if (i2c_is_isa_adapter(adapter)) return 0; 316 314 317 /* The address of the ADM2940 must at least start somewhere in 315 318 0x2C to 0x2F, but can be changed to be anyelse after that. -
lm-sensors/trunk/kernel/chips/eeprom.c
r233 r283 25 25 #include "sensors.h" 26 26 #include "i2c.h" 27 #include "i2c-isa.h" 27 28 #include "version.h" 28 29 … … 131 132 132 133 err = 0; 133 134 /* Make sure we aren't probing the ISA bus!! */ 135 if (i2c_is_isa_adapter(adapter)) return 0; 136 134 137 /* OK, this is no detection. I know. It will do for now, though. */ 135 138 -
lm-sensors/trunk/kernel/chips/lm75.c
r207 r283 24 24 #include "sensors.h" 25 25 #include "i2c.h" 26 #include "i2c-isa.h" 26 27 #include "version.h" 27 28 … … 114 115 115 116 err = 0; 117 /* Make sure we aren't probing the ISA bus!! */ 118 if (i2c_is_isa_adapter(adapter)) return 0; 116 119 117 120 /* OK, this is no detection. I know. It will do for now, though. */ -
lm-sensors/trunk/kernel/chips/lm80.c
r207 r283 258 258 /* OK, this is no detection. I know. It will do for now, though. */ 259 259 err = 0; 260 261 /* Make sure we aren't probing the ISA bus!! */ 262 if (i2c_is_isa_adapter(adapter)) return 0; 263 260 264 for (address = 0x20; (! err) && (address <= 0x2f); address ++) { 261 265 -
lm-sensors/trunk/kernel/chips/ltc1710.c
r233 r283 47 47 #include "sensors.h" 48 48 #include "i2c.h" 49 #include "i2c-isa.h" 49 50 #include "version.h" 50 51 … … 130 131 131 132 err = 0; 133 /* Make sure we aren't probing the ISA bus!! */ 134 if (i2c_is_isa_adapter(adapter)) return 0; 132 135 133 136 /* OK, this is no detection. I know. It will do for now, though. */
