Changeset 4039
- Timestamp:
- 06/05/06 09:55:07 (7 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
kernel/busses/i2c-viapro.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r4037 r4039 16 16 Add ICH8 support (2.6 backport) 17 17 Module i2c-piix4: Add ServerWorks HT-1000 support (2.6 backport) 18 Module i2c-viapro: Fix compilation with kernels < 2.4.21 18 19 Module w83781d: Use real-time alarm registers when possible (2.6 backport) 19 20 Program decode-dimms.pl: Decode depending on the memory type -
lm-sensors/trunk/kernel/busses/i2c-viapro.c
r3164 r4039 49 49 #include "version.h" 50 50 #include "sensors_compat.h" 51 52 /* 8233A is undefined before kernel 2.4.19 */ 53 #ifndef PCI_DEVICE_ID_VIA_8233A 54 #define PCI_DEVICE_ID_VIA_8233A 0x3147 55 #endif 56 /* 8235 is undefined before kernel 2.4.21 */ 57 #ifndef PCI_DEVICE_ID_VIA_8235 58 #define PCI_DEVICE_ID_VIA_8235 0x3177 59 #endif 60 /* 8237 is undefined before kernel 2.4.21 */ 61 #ifndef PCI_DEVICE_ID_VIA_8237 62 #define PCI_DEVICE_ID_VIA_8237 0x3227 63 #endif 51 64 52 65 #define SMBBA1 0x90 … … 421 434 } 422 435 423 /* 8233A is undefined before kernel 2.4.19 */424 #ifndef PCI_DEVICE_ID_VIA_8233A425 #define PCI_DEVICE_ID_VIA_8233A 0x3147426 #endif427 /* 8235 is undefined before kernel 2.4.20 */428 #ifndef PCI_DEVICE_ID_VIA_8235429 #define PCI_DEVICE_ID_VIA_8235 0x3177430 #endif431 /* 8237 is undefined before kernel 2.4.21 */432 #ifndef PCI_DEVICE_ID_VIA_8237433 #define PCI_DEVICE_ID_VIA_8237 0x3227434 #endif435 436 static struct pci_device_id vt596_ids[] __initdata = { 436 437 {
