Changeset 3780
- Timestamp:
- 03/09/03 02:01:33 (6 years ago)
- Files:
-
- i2c/trunk/CHANGES (modified) (1 diff)
- i2c/trunk/kernel/i2c-proc.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
i2c/trunk/CHANGES
r3779 r3780 25 25 i2c-id.h: add IDs for i2c-algo-biths, W83627HF, LM85, nForce2, OMAHA, GUIDE, 26 26 MPC107 27 i2c-proc.c: Fix ignore and probe tests 27 28 i2c.h: Add fields for detailed delivery report in i2c_msg. 28 29 i2c/trunk/kernel/i2c-proc.c
r3772 r3780 677 677 ((address_data-> 678 678 ignore_range[i] == 679 SENSORS_ANY_I2C_BUS) & !is_isa))679 SENSORS_ANY_I2C_BUS) && !is_isa)) 680 680 && (addr >= address_data->ignore_range[i + 1]) 681 681 && (addr <= address_data->ignore_range[i + 2])) { … … 766 766 if (((adapter_id == address_data->probe[i]) || 767 767 ((address_data-> 768 probe[i] == SENSORS_ANY_I2C_BUS) & !is_isa))768 probe[i] == SENSORS_ANY_I2C_BUS) && !is_isa)) 769 769 && (addr == address_data->probe[i + 1])) { 770 770 #ifdef DEBUG … … 783 783 || 784 784 ((address_data->probe_range[i] == 785 SENSORS_ANY_I2C_BUS) & !is_isa))785 SENSORS_ANY_I2C_BUS) && !is_isa)) 786 786 && (addr >= address_data->probe_range[i + 1]) 787 787 && (addr <= address_data->probe_range[i + 2])) {
