Changeset 5565
- Timestamp:
- 12/14/08 19:13:22 (4 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/eeprom/decode-dimms.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r5564 r5565 19 19 Module max1619: Use inline functions instead of macros (2.6 backport) 20 20 Program decode-dimms.pl: Only export the ceil function from POSIX 21 Fix decoding of SDR SDRAM bytes 12-14 21 22 Program pwmconfig: Fix MINSTOP and MINSTART test functions (#2340) 22 23 Change default for MINTEMP from 0 to 20 degrees C -
lm-sensors/trunk/prog/eeprom/decode-dimms.pl
r5537 r5565 533 533 534 534 $l = "Refresh Type"; 535 if ($bytes->[12] > 126) { printl $l, "Self Refreshing"; }535 if ($bytes->[12] & 0x80) { printl $l, "Self Refreshing"; } 536 536 else { printl $l, "Not Self Refreshing"; } 537 537 … … 547 547 548 548 $l = "Primary SDRAM Component Bank Config"; 549 if ($bytes->[13] > 126) { printl $l, "Bank2 = 2 x Bank1"; }549 if ($bytes->[13] & 0x80) { printl $l, "Bank2 = 2 x Bank1"; } 550 550 else { printl $l, "No Bank2 OR Bank2 = Bank1 width"; } 551 551 … … 556 556 557 557 $l = "Error Checking SDRAM Component Bank Config"; 558 if ($bytes->[14] > 126) { printl $l, "Bank2 = 2 x Bank1"; }558 if ($bytes->[14] & 0x80) { printl $l, "Bank2 = 2 x Bank1"; } 559 559 else { printl $l, "No Bank2 OR Bank2 = Bank1 width"; } 560 560
