Changeset 26

Show
Ignore:
Timestamp:
12/03/98 01:43:59 (15 years ago)
Author:
frodo
Message:

Updated MODIFICATIONS

This is really the last commit for today. I promise ;-)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/i2c/MODIFICATIONS

    r19 r26  
    1010Here come the changes: 
    1111 
    12 * rscid declarations are changed 
    13   This is an unfortunate interaction between our CVS server and Simon's 
    14   RCS (CVS?) server. As these ids do not seem to be accessed anywhere, 
    15   there should be no change in the final object code 
    16  
    17 * Log entries are added 
    18   Another RCS/CVS side effect. Our logs are sometimes put in the source 
    19   code. As they are just comments, they will do no harm. 
    20  
    21 * EXPORT_SYMBOL declarations removed 
     12* EXPORT_SYMBOL declarations put between #ifdef statements 
    2213  They only work if you use the Linux source tree Makefiles. As we want to 
    2314  use our own Makefile, we have removed them. This should have almost no 
     
    2516  exported, but this should do no harm. 
    2617 
    27 * bit-mb: Linux 2.0.x fixes 
     18* bit-mb.c: Linux 2.0.x fixes 
    2819  Some small changes to make this file compile with 2.0 kernels. These 
    2920  changes will probably be included in the next i2c version. 
     
    3930  small and lean. 
    4031 
    41 ! i2c-core: i2c_del_adapter() change 
     32! i2c-core.c: i2c_del_adapter() change 
    4233  Replaced 
    4334    i2c_detach_client(client); 
     
    4536    client->driver->detach_client(client); 
    4637 
    47 ! i2c-core: function i2c_adapter_id added 
     38! i2c-core.c, i2c-core.h: function i2c_adapter_id added 
     39  We needed a function that would return a low, unique identifier for each 
     40  adapter. Putting it anywhere else would have created new, unneeded 
     41  module dependencies.