Changeset 4904

Show
Ignore:
Timestamp:
09/29/07 21:28:28 (1 year ago)
Author:
khali
Message:

Discard a paranoid test in outb().

Files:

Legend:

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

    r4903 r4904  
    21862186sub outb 
    21872187{ 
    2188   if ($_[1] > 0xff) 
    2189   { 
    2190     my ($package, $filename, $line, $sub) = caller(1); 
    2191     print "\n*** Called outb with value=$_[1] from line $line\n", 
    2192           "*** (in $sub). PLEASE REPORT!\n", 
    2193           "*** Terminating.\n"; 
    2194     exit(-1); 
    2195   } 
    21962188  my $towrite = pack "C", $_[1]; 
    21972189  sysseek IOPORTS, $_[0], 0 or return -1;