The patch titled Subject: video: exynos_dp: move disable_irq() to exynos_dp_suspend() has been added to the -mm tree. Its filename is video-exynos_dp-move-disable_irq-to-exynos_dp_suspend.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: Ajay Kumar <ajaykumar.rs@xxxxxxxxxxx> Subject: video: exynos_dp: move disable_irq() to exynos_dp_suspend() disable_irq() should be moved to exynos_dp_suspend(), because enable_irq() is called at exynos_dp_resume(). Signed-off-by: Ajay Kumar <ajaykumar.rs@xxxxxxxxxxx> Signed-off-by: Jingoo Han <jg1.han@xxxxxxxxxxx> Cc: Florian Tobias Schandinat <FlorianSchandinat@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/exynos/exynos_dp_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/video/exynos/exynos_dp_core.c~video-exynos_dp-move-disable_irq-to-exynos_dp_suspend drivers/video/exynos/exynos_dp_core.c --- a/drivers/video/exynos/exynos_dp_core.c~video-exynos_dp-move-disable_irq-to-exynos_dp_suspend +++ a/drivers/video/exynos/exynos_dp_core.c @@ -1124,8 +1124,6 @@ static int exynos_dp_remove(struct platf struct exynos_dp_platdata *pdata = pdev->dev.platform_data; struct exynos_dp_device *dp = platform_get_drvdata(pdev); - disable_irq(dp->irq); - flush_work(&dp->hotplug_work); if (pdev->dev.of_node) { @@ -1148,6 +1146,8 @@ static int exynos_dp_suspend(struct devi struct exynos_dp_platdata *pdata = dev->platform_data; struct exynos_dp_device *dp = dev_get_drvdata(dev); + disable_irq(dp->irq); + flush_work(&dp->hotplug_work); if (dev->of_node) { _ Patches currently in -mm which might be from ajaykumar.rs@xxxxxxxxxxx are linux-next.patch video-exynos_dp-add-missing-of_node_put.patch video-exynos_dp-move-disable_irq-to-exynos_dp_suspend.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