2017-08-23 13:49:29

by Bhumika Goyal

[permalink] [raw]
Subject: [PATCH] pinctrl: freescale: make mxs_regs const

Make these const as they are only stored in the const field of a
mxs_pinctrl_soc_data structure.

Signed-off-by: Bhumika Goyal <[email protected]>
---
drivers/pinctrl/freescale/pinctrl-imx23.c | 2 +-
drivers/pinctrl/freescale/pinctrl-imx28.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/pinctrl/freescale/pinctrl-imx23.c b/drivers/pinctrl/freescale/pinctrl-imx23.c
index 89b4f16..c940568 100644
--- a/drivers/pinctrl/freescale/pinctrl-imx23.c
+++ b/drivers/pinctrl/freescale/pinctrl-imx23.c
@@ -257,7 +257,7 @@ enum imx23_pin_enum {
MXS_PINCTRL_PIN(EMI_CLKN),
};

-static struct mxs_regs imx23_regs = {
+static const struct mxs_regs imx23_regs = {
.muxsel = 0x100,
.drive = 0x200,
.pull = 0x400,
diff --git a/drivers/pinctrl/freescale/pinctrl-imx28.c b/drivers/pinctrl/freescale/pinctrl-imx28.c
index 295236d..87deb9e 100644
--- a/drivers/pinctrl/freescale/pinctrl-imx28.c
+++ b/drivers/pinctrl/freescale/pinctrl-imx28.c
@@ -373,7 +373,7 @@ enum imx28_pin_enum {
MXS_PINCTRL_PIN(EMI_CKE),
};

-static struct mxs_regs imx28_regs = {
+static const struct mxs_regs imx28_regs = {
.muxsel = 0x100,
.drive = 0x300,
.pull = 0x600,
--
1.9.1


2017-08-31 11:57:26

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH] pinctrl: freescale: make mxs_regs const

On Wed, Aug 23, 2017 at 3:49 PM, Bhumika Goyal <[email protected]> wrote:

> Make these const as they are only stored in the const field of a
> mxs_pinctrl_soc_data structure.
>
> Signed-off-by: Bhumika Goyal <[email protected]>

Patch applied.

Yours,
Linus Walleij