Changeset 5368 for lm-sensors/trunk/kernel/busses/i2c-viapro.c
- Timestamp:
- 10/22/08 16:16:51 (4 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/kernel/busses/i2c-viapro.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/kernel/busses/i2c-viapro.c
r4319 r5368 38 38 VT8251 0x3287 yes 39 39 CX700 0x8324 yes 40 VX800/VX820 0x8353 yes 40 41 41 42 Note: we assume there can only be one device, with one SMBus interface. … … 76 77 #ifndef PCI_DEVICE_ID_VIA_CX700 77 78 #define PCI_DEVICE_ID_VIA_CX700 0x8324 79 #endif 80 /* VX800 is undefined */ 81 #ifndef PCI_DEVICE_ID_VIA_VX800 82 #define PCI_DEVICE_ID_VIA_VX800 0x8353 78 83 #endif 79 84 … … 425 430 switch (id->device) { 426 431 case PCI_DEVICE_ID_VIA_CX700: 432 case PCI_DEVICE_ID_VIA_VX800: 427 433 case PCI_DEVICE_ID_VIA_8251: 428 434 case PCI_DEVICE_ID_VIA_8237: … … 530 536 .driver_data = SMBBA3 531 537 }, 538 { 539 .vendor = PCI_VENDOR_ID_VIA, 540 .device = PCI_DEVICE_ID_VIA_VX800, 541 .subvendor = PCI_ANY_ID, 542 .subdevice = PCI_ANY_ID, 543 .driver_data = SMBBA3 544 }, 532 545 { 0, } 533 546 };
