Changeset 1750

Show
Ignore:
Timestamp:
05/31/03 22:23:13 (10 years ago)
Author:
mmh
Message:

Added support for SiS651 north bridge.

Patches and testing by Chris King and Norbert Roos

Location:
lm-sensors/trunk
Files:
2 modified

Legend:

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

    r1708 r1750  
    33              monitoring 
    44 
    5     Copyright (c) 2002 Mark M. Hoffman <mhoffman@lightlink.com> 
     5    Copyright (c) 2003 Mark M. Hoffman <mhoffman@lightlink.com> 
    66 
    77    This program is free software; you can redistribute it and/or modify 
     
    5656#ifndef PCI_DEVICE_ID_SI_648 
    5757#define PCI_DEVICE_ID_SI_648 0x0648 
     58#endif 
     59 
     60/* SiS651 north bridge */ 
     61#ifndef PCI_DEVICE_ID_SI_651 
     62#define PCI_DEVICE_ID_SI_651 0x0651 
    5863#endif 
    5964 
     
    234239                                PCI_DEVICE_ID_SI_650, NULL)) 
    235240                        && (NULL == pci_find_device(PCI_VENDOR_ID_SI, 
     241                                PCI_DEVICE_ID_SI_651, NULL)) 
     242                        && (NULL == pci_find_device(PCI_VENDOR_ID_SI, 
    236243                                PCI_DEVICE_ID_SI_735, NULL))) { 
    237244                        printk(KERN_ERR DRV_NAME ": Can't find suitable host bridge!\n"); 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r1740 r1750  
    242242       func => 0, 
    243243       procid => "Silicon Integrated Systems SIS650", 
     244       driver => "i2c-sis645", 
     245       match => sub { $_[0] =~ /^SMBus SiS645 adapter at 0x[0-9,a-f]{4}/ }, 
     246     } , 
     247     { 
     248       vendid => 0x1039, 
     249       devid  => 0x0651, 
     250       func => 0, 
     251       procid => "Silicon Integrated Systems SIS651", 
    244252       driver => "i2c-sis645", 
    245253       match => sub { $_[0] =~ /^SMBus SiS645 adapter at 0x[0-9,a-f]{4}/ },