[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1290135943.23599.1.camel@mola>
Date: Fri, 19 Nov 2010 11:05:43 +0800
From: Axel Lin <axel.lin@...il.com>
To: Borislav Petkov <borislav.petkov@....com>
Cc: linux-kernel <linux-kernel@...r.kernel.org>
Subject: [PATCH] EDAC, MCE: Fix edac_init_mce_inject error handling
Otherwise, variable i will be -1 inside the latest iteration of the while loop.
Signed-off-by: Axel Lin <axel.lin@...il.com>
---
drivers/edac/mce_amd_inj.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/edac/mce_amd_inj.c b/drivers/edac/mce_amd_inj.c
index 6db494f..733a7e7 100644
--- a/drivers/edac/mce_amd_inj.c
+++ b/drivers/edac/mce_amd_inj.c
@@ -140,7 +140,7 @@ static int __init edac_init_mce_inject(void)
return 0;
err_sysfs_create:
- while (i-- >= 0)
+ while (--i >= 0)
sysfs_remove_file(mce_kobj, &sysfs_attrs[i]->attr);
kobject_del(mce_kobj);
--
1.7.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists