Show
Ignore:
Timestamp:
12/25/98 16:50:47 (14 years ago)
Author:
frodo
Message:

Several minor things

* sensors.conf.eg now contains LM80 declarations
* i2c/i2c-core.c again displays which adapters and clients are found and

connected, but it does not track the calls to transfer functions in dmesg

* Slight alarms computation bug in lm78.c repaired
* First hacks at lm80.c; expect a fully working version later today

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/kernel/chips/lm78.c

    r106 r113  
    721721    data->fan_div[1] = i >> 6; 
    722722    data->alarms = lm78_read_value(client,LM78_REG_ALARM1) + 
    723                    (lm78_read_value(client,LM78_REG_ALARM2) >> 8); 
     723                   (lm78_read_value(client,LM78_REG_ALARM2) << 8); 
    724724    data->last_updated = jiffies; 
    725725    data->valid = 1;