Changeset 3223

Show
Ignore:
Timestamp:
01/07/06 18:26:14 (3 years ago)
Author:
khali
Message:

One more supported PCI ID for the i2c-nforce2 driver. This is a
backport from Linux 2.6.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/doc/busses/i2c-nforce2

    r2911 r3223  
    1818    * nVidia nForce4 SMBus PCI interface 
    1919      (10de:0052, included in nForce4 MCP) 
     20      (10de:0034, included in nForce4 MCP-04) 
    2021      Datasheet: same as for nForce2 SMBus PCI interface 
    2122 
  • lm-sensors/trunk/kernel/busses/i2c-nforce2.c

    r3177 r3223  
    2929    nForce3 250Gb MCP           00E4 
    3030    nForce4 MCP                 0052 
     31    nForce4 MCP-04              0034 
    3132 
    3233    This driver supports the 2 SMBuses that are included in the MCP of the 
     
    7475#endif 
    7576 
     77#ifndef PCI_DEVICE_ID_NVIDIA_NFORCE_MPC04_SMBUS 
     78#define PCI_DEVICE_ID_NVIDIA_NFORCE_MPC04_SMBUS 0x0034 
     79#endif 
     80 
    7681 
    7782struct nforce2_smbus { 
     
    297302        { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE4_SMBUS, 
    298303                PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, 
     304        { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MPC04_SMBUS, 
     305                PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, 
    299306        { 0 } 
    300307};