dect
/
linux-2.6
Archived
13
0
Fork 0

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: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
This commit is contained in:
MyungJoo Ham 2010-11-26 23:07:48 +01:00 committed by Rafael J. Wysocki
parent 8cfe400ca5
commit 5729c63a51
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ void hibernation_set_ops(struct platform_hibernation_ops *ops)
{
if (ops && !(ops->begin && ops->end && ops->pre_snapshot
&& ops->prepare && ops->finish && ops->enter && ops->pre_restore
&& ops->restore_cleanup)) {
&& ops->restore_cleanup && ops->leave)) {
WARN_ON(1);
return;
}