The patch titled Subject: drivers/thermal/user_space.c: add missing static storage class specifiers has been removed from the -mm tree. Its filename was drivers-thermal-user_spacec-add-missing-static-storage-class-specifiers.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Sachin Kamat <sachin.kamat@xxxxxxxxxx> Subject: drivers/thermal/user_space.c: add missing static storage class specifiers Fixes the following sparse warnings: drivers/thermal/user_space.c:38:5: warning: symbol 'notify_user_space' was not declared. Should it be static? drivers/thermal/user_space.c:46:25: warning: symbol 'thermal_gov_user_space' was not declared. Should it be static? Signed-off-by: Sachin Kamat <sachin.kamat@xxxxxxxxxx> Acked-by: Durgadoss R <durgadoss.r@xxxxxxxxx> Cc: Amit Daniel Kachhap <amit.kachhap@xxxxxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Cc: "Brown, Len" <len.brown@xxxxxxxxx> Cc: Zhang Rui <rui.zhang@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/thermal/user_space.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/thermal/user_space.c~drivers-thermal-user_spacec-add-missing-static-storage-class-specifiers drivers/thermal/user_space.c --- a/drivers/thermal/user_space.c~drivers-thermal-user_spacec-add-missing-static-storage-class-specifiers +++ a/drivers/thermal/user_space.c @@ -35,7 +35,7 @@ * * This function notifies the user space through UEvents. */ -int notify_user_space(struct thermal_zone_device *tz, int trip) +static int notify_user_space(struct thermal_zone_device *tz, int trip) { mutex_lock(&tz->lock); kobject_uevent(&tz->device.kobj, KOBJ_CHANGE); @@ -43,7 +43,7 @@ int notify_user_space(struct thermal_zon return 0; } -struct thermal_governor thermal_gov_user_space = { +static struct thermal_governor thermal_gov_user_space = { .name = "user_space", .throttle = notify_user_space, .owner = THIS_MODULE, _ Patches currently in -mm which might be from sachin.kamat@xxxxxxxxxx are origin.patch linux-next.patch mm-hugetlbc-remove-duplicate-inclusion-of-header-file.patch memcg-cleanup-kmem-tcp-ifdefs.patch memcg-move-mem_cgroup_is_root-upwards.patch drivers-video-backlight-da9052_blc-use-usleep_range-instead-of-msleep-for-small-sleeps.patch drivers-video-backlight-ltv350qvc-use-usleep_range-instead-of-msleep-for-small-sleeps.patch drivers-video-backlight-kb3886_blc-use-usleep_range-instead-of-msleep-for-small-sleeps.patch drivers-rtc-rtc-s3cc-fix-return-value-in-s3c_rtc_probe.patch proc-use-null-instead-of-0-for-pointer.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