Changeset 78

Show
Ignore:
Timestamp:
12/15/98 04:22:20 (15 years ago)
Author:
frodo
Message:

Last changes for 2.0.2

* Fixed FORCE_PIIX4_ENABLE bus (misspelled function call)
* Added Kyösti's mail about the VIA chipset to the doc directory, as

temporary placeholder

Location:
lm-sensors/trunk
Files:
1 added
4 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/TODO

    r64 r78  
    11Many, many things. Most notably: 
    22 
     3* At least the bit-lp and bit-velle modules do no detection on loading; 
     4  ask Simon whether this is possible to add. 
    35* Check whether the FAN count divisors in the lm78 module are correct 
    46  (probably not!); correct gl518sm changed-fan_div_but_did_not_update_fans 
  • lm-sensors/trunk/doc/modules

    r61 r78  
    7979(i2c) bit-mb: algo-bit i2c-core 
    8080  VIA VT82C586B bus access. This is often used instead of the PIIX4 as SMBus 
     81  host. 
    8182 
    8283(i2c) bit-lp: algo-bit i2c-core 
    8384  I2C bus through the parallel port, Philips interface 
     85  Do not insert this module unless you are sure you have this interface; 
     86  it will block your parallel port, and cause fake devices to appear. 
    8487  Module parameters: 
    8588    base (i) Base address of parallel port 
     
    8790(i2c) bit-velle: algo-bit i2c-core 
    8891  I2C bus through the parallel port, Vellemann K9000 interface 
     92  Do not insert this module unless you are sure you have this interface; 
     93  it will block your parallel port, and cause fake devices to appear. 
    8994  Module parameters: 
    9095    base (i) Base address of parallel port 
  • lm-sensors/trunk/kernel/busses/i2c-piix4.c

    r40 r78  
    159159   resorting to this.  */ 
    160160  if ((temp & 1) == 0) { 
    161     pcibios_write_config_byte_united(PIIX4_dev, PIIX4_bus, PIIX4_devfn, 
     161    pci_write_config_byte_united(PIIX4_dev, PIIX4_bus, PIIX4_devfn, 
    162162                                     SMBHSTCFG, temp | 1); 
    163163    printk("piix4.0: WARNING: PIIX4 SMBus interface has been FORCEFULLY " 
  • lm-sensors/trunk/src/piix4.c

    r40 r78  
    159159   resorting to this.  */ 
    160160  if ((temp & 1) == 0) { 
    161     pcibios_write_config_byte_united(PIIX4_dev, PIIX4_bus, PIIX4_devfn, 
     161    pci_write_config_byte_united(PIIX4_dev, PIIX4_bus, PIIX4_devfn, 
    162162                                     SMBHSTCFG, temp | 1); 
    163163    printk("piix4.0: WARNING: PIIX4 SMBus interface has been FORCEFULLY "