3.16.37-rc1 review patch. If anyone has any objections, please let me know.
------------------ From: Emmanouil Maroudas <emmanouil.marou...@gmail.com> commit 993f88f1cc7f0879047ff353e824e5cc8f10adfc upstream. Fix typo in edac_inc_ue_error() to increment ue_noinfo_count instead of ce_noinfo_count. Signed-off-by: Emmanouil Maroudas <emmanouil.marou...@gmail.com> Cc: Mauro Carvalho Chehab <mche...@osg.samsung.com> Cc: linux-edac <linux-e...@vger.kernel.org> Fixes: 4275be635597 ("edac: Change internal representation to work with layers") Link: http://lkml.kernel.org/r/1461425580-5898-1-git-send-email-emmanouil.marou...@gmail.com Signed-off-by: Borislav Petkov <b...@suse.de> Signed-off-by: Ben Hutchings <b...@decadent.org.uk> --- drivers/edac/edac_mc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/edac/edac_mc.c +++ b/drivers/edac/edac_mc.c @@ -962,7 +962,7 @@ static void edac_inc_ue_error(struct mem mci->ue_mc += count; if (!enable_per_layer_report) { - mci->ce_noinfo_count += count; + mci->ue_noinfo_count += count; return; }