Changeset 1430

Show
Ignore:
Timestamp:
07/09/02 11:36:06 (6 years ago)
Author:
abz
Message:

Various small changes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/CHANGES

    r1409 r1430  
    20202.6.4 (2002????) 
    2121  NOTE: Requires i2c-2.6.1 or newer, or kernel 2.4.13 or newer. 
     22  Module lm92: new 
    2223  File doc/vid: New 
    2324  File include/sensors_vid.h: New 
     
    4950  Program sensors: Recognize DDR SDRAM; add adm1025 VID; add -A 
    5051                   (don't display algo. and adap.) option; 
    51                    support vt1211       
     52                   support vt1211 
    5253  Program sensors-detect: Add VT8231, VT8233A, several S3 devices; 
    5354                          add 82801DB, LM85; fix perl warnings 
  • lm-sensors/trunk/CONTRIBUTORS

    r1253 r1430  
    6767* Aurelien Jarno <aurelien@aurel32.net> 
    6868  Author of the pcf8591 driver. 
     69* Abraham vd Merwe <abraham@2d3d.co.za> 
     70  Author of the LM92 driver. 
    6971 
  • lm-sensors/trunk/README

    r1397 r1430  
    6767  Myson MTP008 
    6868  National Semiconductor LM75, LM77, LM78, LM78-J, LM79, 
    69                          LM80, LM81, LM84, and LM87 
     69                         LM80, LM81, LM84, LM87, and LM92 
    7070  Philips NE1617, NE1617A 
    7171  SiS 5595, 950 embedded sensors 
  • lm-sensors/trunk/lib/data.h

    r676 r1430  
    128128/* Internal data about a single chip feature. 
    129129   name is the string name used to refer to this feature (both in config 
    130     files and through user functions); 
     130    files and through user functions); 
    131131   number is the internal feature number, used in many functions to refer 
    132132     to this feature 
    133    logical_mapping is either SENSORS_NO_MAPPING is this is feature is the 
     133   logical_mapping is either SENSORS_NO_MAPPING if this is feature is the 
    134134     main element of category; or it is the number of a feature with which 
    135135     this feature is logically grouped (a group could be fan, fan_max and 
     
    139139     fan_max, but not fan_div) 
    140140    mode is SENSORS_MODE_NO_RW, SENSORS_MODE_R, SENSORS_MODE_W or 
    141       SENSORS_MODE_RW, for unaccessible, readable, writable, and both readable 
    142       and writable. 
     141     SENSORS_MODE_RW, for unaccessible, readable, writable, and both readable 
     142     and writable. 
    143143    sysctl is the SYSCTL id of the file the value can be found in; 
    144     offset is the (byte) offset of the place this feature can be found; 
    145     Divide the read value by 10**scaling to get the real value */ 
     144    offset is the (byte) offset of the place this feature can be found; 
     145    Divide the read value by 10**scaling to get the real value */ 
    146146typedef struct sensors_chip_feature { 
    147147  int number;