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

Commit fd92f41d authored by Philipp Zabel's avatar Philipp Zabel Committed by Stephen Boyd
Browse files

clk: mmp: Make reset_control_ops const



The mmp_clk_reset_ops structure is never modified. Make it const.

Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent f39bb457
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@ static int mmp_clk_reset_deassert(struct reset_controller_dev *rcdev,
	return 0;
}

static struct reset_control_ops mmp_clk_reset_ops = {
static const struct reset_control_ops mmp_clk_reset_ops = {
	.assert		= mmp_clk_reset_assert,
	.deassert	= mmp_clk_reset_deassert,
};