Changeset 5555

Show
Ignore:
Timestamp:
12/11/08 14:29:03 (4 years ago)
Author:
khali
Message:

Drop extra newline characters.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • i2c-tools/trunk/eeprom/decode-dimms

    r5554 r5555  
    542542        $l = "Primary SDRAM Component Widths"; 
    543543        $temp = $bytes->[13] & 0x7f; 
    544         if ($temp == 0) { printl $l, "Undefined!\n"; } 
     544        if ($temp == 0) { printl $l, "Undefined!"; } 
    545545        else { printl $l, $temp; } 
    546546 
     
    13791379 
    13801380        $l = "Frequency"; 
    1381         if ($bytes->[126] == 0x66) { $temp = "66MHz\n"; } 
    1382         elsif ($bytes->[126] == 100) { $temp = "100MHz or 133MHz\n"; } 
    1383         elsif ($bytes->[126] == 133) { $temp = "133MHz\n"; } 
    1384         else { $temp = "Undefined!\n"; } 
     1381        if ($bytes->[126] == 0x66) { $temp = "66MHz"; } 
     1382        elsif ($bytes->[126] == 100) { $temp = "100MHz or 133MHz"; } 
     1383        elsif ($bytes->[126] == 133) { $temp = "133MHz"; } 
     1384        else { $temp = "Undefined!"; } 
    13851385        printl $l, $temp; 
    13861386 
     
    16831683                printl $l, ($chk_valid ? 
    16841684                        sprintf("OK (%s)", $chk_calc) : 
    1685                         sprintf("Bad\n(found %s, calculated %s)\n", 
     1685                        sprintf("Bad\n(found %s, calculated %s)", 
    16861686                                $chk_spd, $chk_calc)); 
    16871687