The patch titled Subject: drivers/thermal/exynos_thermal.c: fix build error has been added to the -mm tree. Its filename is thermal-exynos-fix-build-error.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ 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 origin.patch linux-next.patch thermal-exynos-fix-build-error.patch thermal-exynos-remove-duplicate-inclusion-of-errh-header-file.patch thermal-exynos-use-devm_-functions.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