The patch titled Subject: drivers/thermal/exynos_thermal.c: fix build error has been removed from the -mm tree. Its filename was thermal-exynos-fix-build-error.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Sachin Kamat <sachin.kamat@xxxxxxxxxx> Subject: drivers/thermal/exynos_thermal.c: fix build error Fix the following error: drivers/thermal/exynos_thermal.c:393:4: error: too few arguments to function `thermal_zone_device_register' Add the missing 'mask' argument. Signed-off-by: Sachin Kamat <sachin.kamat@xxxxxxxxxx> Signed-off-by: Sachin Kamat <sachin.kamat@xxxxxxxxxxx> Cc: Guenter Roeck <guenter.roeck@xxxxxxxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Cc: "Brown, Len" <len.brown@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/thermal/exynos_thermal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/thermal/exynos_thermal.c~thermal-exynos-fix-build-error drivers/thermal/exynos_thermal.c --- a/drivers/thermal/exynos_thermal.c~thermal-exynos-fix-build-error +++ a/drivers/thermal/exynos_thermal.c @@ -389,7 +389,7 @@ static int exynos_register_thermal(struc th_zone->cool_dev_size = count; th_zone->therm_dev = thermal_zone_device_register(sensor_conf->name, - EXYNOS_ZONE_COUNT, NULL, &exynos_dev_ops, 0, 0, 0, + EXYNOS_ZONE_COUNT, 0, NULL, &exynos_dev_ops, 0, 0, 0, IDLE_INTERVAL); if (IS_ERR(th_zone->therm_dev)) { _ Patches currently in -mm which might be from sachin.kamat@xxxxxxxxxx are linux-next.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 -- 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