Browse Source

More coding-style fixes.

git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@5156 7894878c-1315-0410-8ee3-d5d059ff63e0
tags/v3.0.1
Jean Delvare 18 years ago
parent
commit
bc9cda32fd
  1. 4
      eeprom/decode-dimms.pl

4
eeprom/decode-dimms.pl

@ -591,7 +591,7 @@ sub decode_sdr_sdram($)
$temp = $bytes->[23] >> 4;
if ($temp == 0) { printl $l, "Undefined!"; }
else {
if ($temp < 4 ) { $temp=$temp + 15; }
if ($temp < 4 ) { $temp += 15; }
printl $l, $temp + (($bytes->[23] & 0xf) * 0.1) . " ns";
}
@ -599,7 +599,7 @@ sub decode_sdr_sdram($)
$temp = $bytes->[24] >> 4;
if ($temp == 0) { printl $l, "Undefined!"; }
else {
if ($temp < 4 ) { $temp=$temp + 15; }
if ($temp < 4 ) { $temp += 15; }
printl $l, $temp + (($bytes->[24] & 0xf) * 0.1) . " ns";
}
}

Loading…
Cancel
Save