aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.vnet.ibm.com>2016-09-17 08:29:30 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-09-17 08:29:30 +1000
commit3f08a2f1d5aa620450715010bfeda14d15201a32 (patch)
tree5c36e16deabf56fb7b48f307dd138e25c7538930
parent97d7d3ecbd4d44bdd92f1b5d236723bf7bdfed38 (diff)
parentfbe155492ad747d3b36267574e6fe20b4f534289 (diff)
downloadskiboot-3f08a2f1d5aa620450715010bfeda14d15201a32.zip
skiboot-3f08a2f1d5aa620450715010bfeda14d15201a32.tar.gz
skiboot-3f08a2f1d5aa620450715010bfeda14d15201a32.tar.bz2
Merge tag 'skiboot-5.3.6' into skiboot-5.3.x
skiboot-5.3.6
-rw-r--r--doc/release-notes/skiboot-5.3.6.txt16
-rw-r--r--hw/slw.c2
2 files changed, 17 insertions, 1 deletions
diff --git a/doc/release-notes/skiboot-5.3.6.txt b/doc/release-notes/skiboot-5.3.6.txt
new file mode 100644
index 0000000..8960ebc
--- /dev/null
+++ b/doc/release-notes/skiboot-5.3.6.txt
@@ -0,0 +1,16 @@
+skiboot-5.3.6
+-------------
+
+skiboot-5.3.6 was released on Saturday September 17th, 2016.
+
+This is the 7th stable release of skiboot 5.3, the new stable release of
+skiboot (first released with 5.3.0 on August 2nd, 2016).
+
+Skiboot 5.3.6 replaces skiboot-5.3.5 as the current stable version. It contains
+one minor bug fix.
+
+Over skiboot-5.3.5, the following fixes are included:
+
+- SLW: Actually print the register dump only to memory
+ A fix in 5.3.5 was only partially correct, we still had the log priority
+ incorrect for dumping of the SLW registers.
diff --git a/hw/slw.c b/hw/slw.c
index 87dc1c4..a2c56da 100644
--- a/hw/slw.c
+++ b/hw/slw.c
@@ -1207,7 +1207,7 @@ static void slw_dump_timer_ffdc(void)
" reg 0x%x\n", rc, reg);
break;
}
- prlog(PR_ERR, "SLW: %5x = %016llx\n", reg, val);
+ prlog(PR_DEBUG, "SLW: %5x = %016llx\n", reg, val);
}
}