Changeset 269

Show
Ignore:
Timestamp:
02/24/99 01:28:05 (14 years ago)
Author:
frodo
Message:

Fixed typo.

Location:
lm-sensors/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/TODO

    r255 r269  
    22 
    33* bit-lp increases module count stupidly 
     4* Segfault if too high /dev/i2c-* file accessed 
    45* Library: reload does not work (Bison/Flex problem?) 
    56* Create wait-queues for bus locking instead of pure semaphores, to make 
     
    3435  present, the LM75 driver should not try to access its simulated 
    3536  LM75 chips. 
    36 * Write a userland detection program for busses (clients are less important; 
    37   but perhaps needed too). 
    3837* Some library routines are pretty inefficient right now 
    3938* Test SIS5595(/91/98) sensor support. Write generic i2c support.  
    4039  Thomas Dickel <Thomas.Dickel@mni.fh-giessen.de> owns one SIS5595. 
    4140  The sensor data must be added to lib/chips 
    42 * Extend detect script to detect chips too. 
  • lm-sensors/trunk/prog/detect/detect.pl

    r268 r269  
    14611461        if ($is_isa) { 
    14621462          if ($data->{isa_addr}) { 
    1463             printf "ISA bus address 0x%04x", $data->{isa_addr}; 
     1463            printf "ISA bus address 0x%04x (Busdriver `i2c-isa')",  
     1464                   $data->{isa_addr}; 
    14641465          } else { 
    1465             printf "ISA bus, undetermined address" 
     1466            printf "ISA bus, undetermined address (Busdriver `i2c-isa')" 
    14661467          } 
    14671468        } 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r268 r269  
    14611461        if ($is_isa) { 
    14621462          if ($data->{isa_addr}) { 
    1463             printf "ISA bus address 0x%04x", $data->{isa_addr}; 
     1463            printf "ISA bus address 0x%04x (Busdriver `i2c-isa')",  
     1464                   $data->{isa_addr}; 
    14641465          } else { 
    1465             printf "ISA bus, undetermined address" 
     1466            printf "ISA bus, undetermined address (Busdriver `i2c-isa')" 
    14661467          } 
    14671468        }