From: Grygorii Strashko Date: Wed, 25 Feb 2015 14:13:50 +0000 (+0200) Subject: ARM: omap-device: add missed callback for suspend-to-disk X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6248015d6867449b0a850dfe0810e9c5a8bffe41;p=linux-beck.git ARM: omap-device: add missed callback for suspend-to-disk Add missed callback needed for supporting suspend-to-disk (hibernation) mode. Signed-off-by: Grygorii Strashko Acked-by: Kevin Hilman Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/mach-omap2/omap_device.c b/arch/arm/mach-omap2/omap_device.c index be9541e18650..166b18f515a2 100644 --- a/arch/arm/mach-omap2/omap_device.c +++ b/arch/arm/mach-omap2/omap_device.c @@ -690,6 +690,9 @@ struct dev_pm_domain omap_device_pm_domain = { USE_PLATFORM_PM_SLEEP_OPS .suspend_noirq = _od_suspend_noirq, .resume_noirq = _od_resume_noirq, + .freeze_noirq = _od_suspend_noirq, + .thaw_noirq = _od_resume_noirq, + .restore_noirq = _od_resume_noirq, } };