Show
Ignore:
Timestamp:
06/03/01 23:58:26 (12 years ago)
Author:
mds
Message:

Initial checkin of it87 driver from

Christophe Gauthron <chrisg@…>

Files:
1 modified

Legend:

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

    r1080 r1112  
    1818    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
    1919*/ 
     20 
    2021 
    2122#include <linux/init.h> 
     
    9899extern int sensors_ltc1710_init(void); 
    99100#endif 
     101#ifdef CONFIG_SENSORS_IT87 
     102extern int sensors_it87_init(void); 
     103#endif 
    100104 
    101105int __init sensors_init_all(void) 
     
    159163        sensors_ltc1710_init(); 
    160164#endif 
     165#ifdef CONFIG_SENSORS_IT87 
     166        sensors_it87_init(); 
     167#endif 
    161168        return 0; 
    162169}