Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7def9a24 authored by Arvind Yadav's avatar Arvind Yadav Committed by Michael Ellerman
Browse files

powerpc/4xx: Constify cpm_suspend_ops



struct platform_suspend_ops are not supposed to change at runtime.
Functions suspend_set_ops working with const platform_suspend_ops. So
mark the non-const structs as const.

Signed-off-by: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 96d91431
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -240,7 +240,7 @@ static int cpm_suspend_enter(suspend_state_t state)
	return 0;
}

static struct platform_suspend_ops cpm_suspend_ops = {
static const struct platform_suspend_ops cpm_suspend_ops = {
	.valid		= cpm_suspend_valid,
	.enter		= cpm_suspend_enter,
};