Changeset 5565 for lm-sensors/trunk/prog/eeprom/decode-dimms.pl
- Timestamp:
- 12/14/08 19:13:22 (3 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/prog/eeprom/decode-dimms.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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
