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
@@ -198,7 +198,7 @@ error:
|
||||
}
|
||||
|
||||
|
||||
static struct pm_ops at91_pm_ops ={
|
||||
static struct platform_suspend_ops at91_pm_ops ={
|
||||
.valid = at91_pm_valid_state,
|
||||
.set_target = at91_pm_set_target,
|
||||
.enter = at91_pm_enter,
|
||||
@@ -219,7 +219,7 @@ static int __init at91_pm_init(void)
|
||||
/* Disable SDRAM low-power mode. Cannot be used with self-refresh. */
|
||||
at91_sys_write(AT91_SDRAMC_LPR, 0);
|
||||
|
||||
pm_set_ops(&at91_pm_ops);
|
||||
suspend_set_ops(&at91_pm_ops);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user