The patch titled Subject: drivers/thermal/fair_share.c: add missing static storage class specifiers has been removed from the -mm tree. Its filename was drivers-thermal-fair_sharec-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/fair_share.c: add missing static storage class specifiers Fixes the following sparse warnings: drivers/thermal/fair_share.c:80:5: warning: symbol 'fair_share_throttle' was not declared. Should it be static? drivers/thermal/fair_share.c:111:25: warning: symbol 'thermal_gov_fair_share' 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/fair_share.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/thermal/fair_share.c~drivers-thermal-fair_sharec-add-missing-static-storage-class-specifiers drivers/thermal/fair_share.c --- a/drivers/thermal/fair_share.c~drivers-thermal-fair_sharec-add-missing-static-storage-class-specifiers +++ a/drivers/thermal/fair_share.c @@ -77,7 +77,7 @@ static long get_target_state(struct ther * (Heavily assumes the trip points are in ascending order) * new_state of cooling device = P3 * P2 * P1 */ -int fair_share_throttle(struct thermal_zone_device *tz, int trip) +static int fair_share_throttle(struct thermal_zone_device *tz, int trip) { const struct thermal_zone_params *tzp; struct thermal_cooling_device *cdev; @@ -108,7 +108,7 @@ int fair_share_throttle(struct thermal_z return 0; } -struct thermal_governor thermal_gov_fair_share = { +static struct thermal_governor thermal_gov_fair_share = { .name = "fair_share", .throttle = fair_share_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