The patch titled cpuidle: fix the uninitialized variable in sysfs routine has been added to the -mm tree. Its filename is cpuidle-fix-the-uninitialized-variable-in-sysfs-routine.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: cpuidle: fix the uninitialized variable in sysfs routine From: Venki Pallipadi <venkatesh.pallipadi@xxxxxxxxx> Fix the uninitialized usage of ret. Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/cpuidle/sysfs.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/cpuidle/sysfs.c~cpuidle-fix-the-uninitialized-variable-in-sysfs-routine drivers/cpuidle/sysfs.c --- a/drivers/cpuidle/sysfs.c~cpuidle-fix-the-uninitialized-variable-in-sysfs-routine +++ a/drivers/cpuidle/sysfs.c @@ -301,7 +301,7 @@ static void inline cpuidle_free_state_ko */ int cpuidle_add_driver_sysfs(struct cpuidle_device *device) { - int i, ret; + int i, ret = -ENOMEM; struct cpuidle_state_kobj *kobj; /* state statistics */ _ Patches currently in -mm which might be from venkatesh.pallipadi@xxxxxxxxx are git-acpi.patch cpuidle-menu-governor-and-hrtimer-compile-fix.patch cpuidle-reenable-proc-acpi-power-interface-for-the-time-being.patch cpuidle-fix-the-uninitialized-variable-in-sysfs-routine.patch cpuidle-menu-governor-change-the-early-break-condition.patch cpuidle-make-cpuidle-sysfs-driver-governor-switch-off-by-default.patch cpuidle-add-rating-to-the-governors-and-pick-the-one-with-highest-rating-by-default.patch cpuidle-first-round-of-documentation-updates.patch git-acpi-add-exports.patch git-cpufreq.patch make-usb-autosuspend-timer-1-sec-jiffy-aligned.patch round_jiffies-for-i386-and-x86-64-non-critical-corrected-mce-polling.patch add-a-flag-to-indicate-deferrable-timers-in-proc-timer_stats.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html