Browse Source

DDR3: Cleanup the decoding of the Module Thermal Sensor field.

git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@6148 7894878c-1315-0410-8ee3-d5d059ff63e0
tags/v4.0
Jean Delvare 12 years ago
parent
commit
13f82c4453
  1. 5
      eeprom/decode-dimms

5
eeprom/decode-dimms

@ -1553,9 +1553,8 @@ sub decode_ddr3_sdram($)
($bytes->[31] & 8) ? "Yes" : "No");
printl("Partial Array Self-Refresh?",
($bytes->[31] & 128) ? "Yes" : "No");
printl("Thermal Sensor Accuracy",
($bytes->[32] & 128) ? sprintf($bytes->[32] & 127) :
"Not implemented");
printl("Module Thermal Sensor",
($bytes->[32] & 128) ? "Yes" : "No");
printl("SDRAM Device Type",
($bytes->[33] & 128) ? sprintf($bytes->[33] & 127) :
"Standard Monolithic");

Loading…
Cancel
Save