]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
MIPS: lantiq: Make reset_control_ops const
authorPhilipp Zabel <p.zabel@pengutronix.de>
Thu, 25 Feb 2016 09:45:46 +0000 (10:45 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 13 May 2016 12:01:43 +0000 (14:01 +0200)
The reset_ops structure is never modified. Make it const.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Acked-by: John Crispin <john@phrozen.org>
Cc: linux-mips@linux-mips.org
Cc: kernel@pengutronix.de
Patchwork: https://patchwork.linux-mips.org/patch/12619/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/lantiq/xway/reset.c

index bc29bb349e94e227fc0b015544d588eddafe5a57..1f3460877ed56cc78d396051a4ecaf0dac3b0ab6 100644 (file)
@@ -258,7 +258,7 @@ static int ltq_reset_device(struct reset_controller_dev *rcdev,
        return ltq_deassert_device(rcdev, id);
 }
 
-static struct reset_control_ops reset_ops = {
+static const struct reset_control_ops reset_ops = {
        .reset = ltq_reset_device,
        .assert = ltq_assert_device,
        .deassert = ltq_deassert_device,