The patch titled Subject: drivers/thermal/step_wise.c: add missing static storage class specifiers has been removed from the -mm tree. Its filename was drivers-thermal-step_wisec-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/step_wise.c: add missing static storage class specifiers Fixes the following sparse warnings: drivers/thermal/step_wise.c:153:5: warning: symbol 'step_wise_throttle' was not declared. Should it be static? drivers/thermal/step_wise.c:172:25: warning: symbol 'thermal_gov_step_wise' 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/step_wise.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/thermal/step_wise.c~drivers-thermal-step_wisec-add-missing-static-storage-class-specifiers drivers/thermal/step_wise.c --- a/drivers/thermal/step_wise.c~drivers-thermal-step_wisec-add-missing-static-storage-class-specifiers +++ a/drivers/thermal/step_wise.c @@ -150,7 +150,7 @@ static void thermal_zone_trip_update(str * step. If the zone is 'cooling down' it brings back the performance of * the devices by one step. */ -int step_wise_throttle(struct thermal_zone_device *tz, int trip) +static int step_wise_throttle(struct thermal_zone_device *tz, int trip) { struct thermal_instance *instance; @@ -169,7 +169,7 @@ int step_wise_throttle(struct thermal_zo return 0; } -struct thermal_governor thermal_gov_step_wise = { +static struct thermal_governor thermal_gov_step_wise = { .name = DEFAULT_THERMAL_GOVERNOR, .throttle = step_wise_throttle, .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