Show
Ignore:
Timestamp:
10/07/01 04:18:25 (12 years ago)
Author:
mds
Message:

add support for Intel 82801CA/CAM to i2c-i801

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/kernel/busses/i2c-i801.c

    r1142 r1197  
    2222 
    2323/* 
    24     This driver supports the Intel 82801AA, 82801AB, and 82801BA 
    25     I/O Controller Hubs (ICH). They are similar to the PIIX4 and are part 
     24    SUPPORTED DEVICES   PCI ID 
     25    82801AA             2413            
     26    82801AB             2423            
     27    82801BA             2443            
     28    82801CA/CAM         2483            
     29 
     30    This driver supports several versions of Intel's I/O Controller Hubs (ICH). 
     31    For SMBus support, they are similar to the PIIX4 and are part 
    2632    of Intel's '810' and other chipsets. 
    2733    See the doc/busses/i2c-i801 file for details. 
     
    5157#define PCI_DEVICE_ID_INTEL_82801BA_2   0x2443 
    5258#endif 
     59#define PCI_DEVICE_ID_INTEL_82801CA_SMBUS       0x2483 
    5360 
    5461static int supported[] = {PCI_DEVICE_ID_INTEL_82801AA_3, 
    5562                          PCI_DEVICE_ID_INTEL_82801AB_3, 
    5663                          PCI_DEVICE_ID_INTEL_82801BA_2, 
     64                          PCI_DEVICE_ID_INTEL_82801CA_SMBUS, 
    5765                          0 }; 
    5866