Commit 1a55cad1 authored by Philipp Zabel's avatar Philipp Zabel
Browse files

reset: lpc18xx: Make reset_control_ops const



The lpc18xx_rgu_ops structure is never modified. Make it const.

Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Acked-by: default avatarJoachim Eastwood <manabian@gmail.com>
parent 01501d57
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ static int lpc18xx_rgu_status(struct reset_controller_dev *rcdev,
	return !(readl(rc->base + offset) & bit);
}

static struct reset_control_ops lpc18xx_rgu_ops = {
static const struct reset_control_ops lpc18xx_rgu_ops = {
	.reset		= lpc18xx_rgu_reset,
	.assert		= lpc18xx_rgu_assert,
	.deassert	= lpc18xx_rgu_deassert,