Hello community,

here is the log from the commit of package i2c-tools for openSUSE:Factory 
checked in at 2014-06-26 08:00:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/i2c-tools (Old)
 and      /work/SRC/openSUSE:Factory/.i2c-tools.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "i2c-tools"

Changes:
--------
--- /work/SRC/openSUSE:Factory/i2c-tools/i2c-tools.changes      2014-02-24 
06:52:06.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.i2c-tools.new/i2c-tools.changes 2014-06-26 
08:00:24.000000000 +0200
@@ -1,0 +2,6 @@
+Thu Jun 19 07:40:41 UTC 2014 - [email protected]
+
+- i2c-tools-r6250-ddr3-fix-ext-temp-refresh.diff: Fix DDR3 extended
+  temp range refresh rate decoding.
+
+-------------------------------------------------------------------

New:
----
  i2c-tools-r6250-ddr3-fix-ext-temp-refresh.diff

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ i2c-tools.spec ++++++
--- /var/tmp/diff_new_pack.esQM3D/_old  2014-06-26 08:00:25.000000000 +0200
+++ /var/tmp/diff_new_pack.esQM3D/_new  2014-06-26 08:00:25.000000000 +0200
@@ -27,6 +27,7 @@
 Recommends:     modules
 Source0:        
http://dl.lm-sensors.org/%{name}/releases/%{name}-%{version}.tar.bz2
 Source1:        
http://dl.lm-sensors.org/%{name}/releases/%{name}-%{version}.tar.bz2.sig
+Patch0:         i2c-tools-r6250-ddr3-fix-ext-temp-refresh.diff
 Patch90:        i2c-tools-hackweek-9-dependencies.diff
 Patch91:        i2c-tools-hackweek-9-improve-DDR3-support.diff
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -48,6 +49,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 %patch90 -p1
 %patch91 -p1
 


++++++ i2c-tools-r6250-ddr3-fix-ext-temp-refresh.diff ++++++
Subject: decode-dimms: Fix DDR3 extended temp range refresh rate decoding
Upstream: yes (r6250)

Based on a patch from Peter Missel. The meaning of byte 31, bit 1,
was inverted. Also, this bit is only meaningful if the extended
temperature range is supported (bit 0 is set.)

--- i2c-tools-3.1/eeprom/decode-dimms   (revision 6231)
+++ i2c-tools-3.1/eeprom/decode-dimms   (revision 6250)
@@ -1289,8 +1289,9 @@
        printl("DLL-Off Mode supported?", ($bytes->[30] & 128) ? "Yes" : "No");
        printl("Operating temperature range", sprintf "0-%d degrees C",
                ($bytes->[31] & 1) ? 95 : 85);
-       printl("Refresh Rate in extended temp range",
-               ($bytes->[31] & 2) ? "2X" : "1X");
+       printl_cond($bytes->[31] & 1,
+                   "Refresh Rate in extended temp range",
+                   ($bytes->[31] & 2) ? "1X" : "2X");
        printl("Auto Self-Refresh?", ($bytes->[31] & 4) ? "Yes" : "No");
        printl("On-Die Thermal Sensor readout?",
                ($bytes->[31] & 8) ? "Yes" : "No");
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to