Prev: [PATCH 02/25] Constify struct sysfs_ops for 2.6.32-git-053fe57ac v2
Next: [PATCH 01/10] Constify struct platform_suspend_ops for 2.6.32-git-053fe57ac v2
From: re.emese on 13 Dec 2009 19:10 From: Emese Revfy <re.emese(a)gmail.com> Signed-off-by: Emese Revfy <re.emese(a)gmail.com> --- kernel/power/suspend.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/power/suspend.c b/kernel/power/suspend.c index 6f10dfc..08e1e7b 100644 --- a/kernel/power/suspend.c +++ b/kernel/power/suspend.c @@ -23,13 +23,13 @@ const char *const pm_states[PM_SUSPEND_MAX] = { [PM_SUSPEND_MEM] = "mem", }; -static struct platform_suspend_ops *suspend_ops; +static const struct platform_suspend_ops *suspend_ops; /** * suspend_set_ops - Set the global suspend method table. * @ops: Pointer to ops structure. */ -void suspend_set_ops(struct platform_suspend_ops *ops) +void suspend_set_ops(const struct platform_suspend_ops *ops) { mutex_lock(&pm_mutex); suspend_ops = ops; -- 1.6.5.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |