PM: Rename struct pm_ops and related things
The name of 'struct pm_ops' suggests that it is related to the power management in general, but in fact it is only related to suspend. Moreover, its name should indicate what this structure is used for, so it seems reasonable to change it to 'struct platform_suspend_ops'. In that case, the name of the global variable of this type used by the PM core and the names of related functions should be changed accordingly. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Pavel Machek <pavel@ucw.cz> Cc: Len Brown <lenb@kernel.org> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
95d9ffbe01
commit
26398a70ea
@@ -163,7 +163,7 @@ static int bfin_pm_valid(suspend_state_t state)
|
||||
return (state == PM_SUSPEND_STANDBY);
|
||||
}
|
||||
|
||||
struct pm_ops bfin_pm_ops = {
|
||||
struct platform_suspend_ops bfin_pm_ops = {
|
||||
.prepare = bfin_pm_prepare,
|
||||
.enter = bfin_pm_enter,
|
||||
.finish = bfin_pm_finish,
|
||||
@@ -172,7 +172,7 @@ struct pm_ops bfin_pm_ops = {
|
||||
|
||||
static int __init bfin_pm_init(void)
|
||||
{
|
||||
pm_set_ops(&bfin_pm_ops);
|
||||
suspend_set_ops(&bfin_pm_ops);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user