Commit 5729c63a authored by MyungJoo Ham's avatar MyungJoo Ham Committed by Rafael J. Wysocki

PM / Hibernate: hibernation_ops->leave should be checked too

Because hibernate calls hibernation_ops->leave() without checking
whether hibernation_ops->leave is NULL or not, hiberantion_set_ops
should WARN_ON if hibernation_ops->leave is NULL.

This patch added one more condition to check hibernation_ops->leave.
Signed-off-by: default avatarMyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Acked-by: default avatarPavel Machek <pavel@ucw.cz>
Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
parent 8cfe400c
...@@ -62,7 +62,7 @@ void hibernation_set_ops(struct platform_hibernation_ops *ops) ...@@ -62,7 +62,7 @@ void hibernation_set_ops(struct platform_hibernation_ops *ops)
{ {
if (ops && !(ops->begin && ops->end && ops->pre_snapshot if (ops && !(ops->begin && ops->end && ops->pre_snapshot
&& ops->prepare && ops->finish && ops->enter && ops->pre_restore && ops->prepare && ops->finish && ops->enter && ops->pre_restore
&& ops->restore_cleanup)) { && ops->restore_cleanup && ops->leave)) {
WARN_ON(1); WARN_ON(1);
return; return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment