Changeset 36

Show
Ignore:
Timestamp:
12/05/98 02:08:42 (10 years ago)
Author:
frodo
Message:

Very minor namespace fixes, and TODO list update (or should I say
downdate; I only removed a few things :-))

Files:

Legend:

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

    r29 r36  
    1010  (needed for good sysctl access). 
    1111* Write smbus_access_i2c in smbus.c 
    12 * Write piix4_* in piix4.c 
    1312* Make lm78.c detect 'double hits', (same chip connected to both SMBus and 
    1413  ISA). 
    1514* Better lm78/lm75 detection; insmod-time paramters to set addresses  
    1615  (difficult, because of all i2c busses!). 
    17 * Check whether some lm78 functionality is chip-generic and can be moved to 
    18   sensors.c. 
    1916* Registrate which i2c addresses are used (a la ISA) for each adapter. 
    2017* Rename i2c-proc.c to i2c-user.c, and extend it with /dev entries; 
  • lm-sensors/trunk/kernel/chips/lm75.c

    r29 r36  
    6060static int lm75_cleanup(void); 
    6161static int lm75_attach_adapter(struct i2c_adapter *adapter); 
    62 int lm75_detach_client(struct i2c_client *client); 
     62static int lm75_detach_client(struct i2c_client *client); 
    6363static int lm75_command(struct i2c_client *client, unsigned int cmd, 
    6464                        void *arg); 
     
    7070static void lm75_temp(struct i2c_client *client, int operation, int ctl_name, 
    7171                      int *nrels_mag, long *results); 
     72static void lm75_update_client(struct i2c_client *client); 
    7273 
    7374 
  • lm-sensors/trunk/kernel/chips/lm78.c

    r33 r36  
    205205 
    206206 
    207 void lm78_in(struct i2c_client *client, int operation, int ctl_name, 
    208              int *nrels_mag, long *results); 
    209 void lm78_fan(struct i2c_client *client, int operation, int ctl_name, 
    210               int *nrels_mag, long *results); 
    211 void lm78_temp(struct i2c_client *client, int operation, int ctl_name, 
    212                int *nrels_mag, long *results); 
    213 void lm78_vid(struct i2c_client *client, int operation, int ctl_name, 
    214               int *nrels_mag, long *results); 
    215 void lm78_alarms(struct i2c_client *client, int operation, int ctl_name, 
    216                  int *nrels_mag, long *results); 
    217 void lm78_fan_div(struct i2c_client *client, int operation, int ctl_name, 
    218                   int *nrels_mag, long *results); 
     207static void lm78_in(struct i2c_client *client, int operation, int ctl_name, 
     208                    int *nrels_mag, long *results); 
     209static void lm78_fan(struct i2c_client *client, int operation, int ctl_name, 
     210                     int *nrels_mag, long *results); 
     211static void lm78_temp(struct i2c_client *client, int operation, int ctl_name, 
     212                      int *nrels_mag, long *results); 
     213static void lm78_vid(struct i2c_client *client, int operation, int ctl_name, 
     214                     int *nrels_mag, long *results); 
     215static void lm78_alarms(struct i2c_client *client, int operation, int ctl_name, 
     216                        int *nrels_mag, long *results); 
     217static void lm78_fan_div(struct i2c_client *client, int operation, int ctl_name, 
     218                         int *nrels_mag, long *results); 
    219219 
    220220/* I choose here for semi-static LM78 allocation. Complete dynamic 
  • lm-sensors/trunk/src/lm75.c

    r29 r36  
    6060static int lm75_cleanup(void); 
    6161static int lm75_attach_adapter(struct i2c_adapter *adapter); 
    62 int lm75_detach_client(struct i2c_client *client); 
     62static int lm75_detach_client(struct i2c_client *client); 
    6363static int lm75_command(struct i2c_client *client, unsigned int cmd, 
    6464                        void *arg); 
     
    7070static void lm75_temp(struct i2c_client *client, int operation, int ctl_name, 
    7171                      int *nrels_mag, long *results); 
     72static void lm75_update_client(struct i2c_client *client); 
    7273 
    7374 
  • lm-sensors/trunk/src/lm78.c

    r33 r36  
    205205 
    206206 
    207 void lm78_in(struct i2c_client *client, int operation, int ctl_name, 
    208              int *nrels_mag, long *results); 
    209 void lm78_fan(struct i2c_client *client, int operation, int ctl_name, 
    210               int *nrels_mag, long *results); 
    211 void lm78_temp(struct i2c_client *client, int operation, int ctl_name, 
    212                int *nrels_mag, long *results); 
    213 void lm78_vid(struct i2c_client *client, int operation, int ctl_name, 
    214               int *nrels_mag, long *results); 
    215 void lm78_alarms(struct i2c_client *client, int operation, int ctl_name, 
    216                  int *nrels_mag, long *results); 
    217 void lm78_fan_div(struct i2c_client *client, int operation, int ctl_name, 
    218                   int *nrels_mag, long *results); 
     207static void lm78_in(struct i2c_client *client, int operation, int ctl_name, 
     208                    int *nrels_mag, long *results); 
     209static void lm78_fan(struct i2c_client *client, int operation, int ctl_name, 
     210                     int *nrels_mag, long *results); 
     211static void lm78_temp(struct i2c_client *client, int operation, int ctl_name, 
     212                      int *nrels_mag, long *results); 
     213static void lm78_vid(struct i2c_client *client, int operation, int ctl_name, 
     214                     int *nrels_mag, long *results); 
     215static void lm78_alarms(struct i2c_client *client, int operation, int ctl_name, 
     216                        int *nrels_mag, long *results); 
     217static void lm78_fan_div(struct i2c_client *client, int operation, int ctl_name, 
     218                         int *nrels_mag, long *results); 
    219219 
    220220/* I choose here for semi-static LM78 allocation. Complete dynamic