Message ID | 20210716131341.3370620-1-festevam@gmail.com |
---|---|
State | Accepted |
Commit | 2fefcf2400659f3f2d2c5ed87a4ceebde3dad7a8 |
Headers | show |
Series | pinctrl: imx8dxl: Constify imx_pinctrl_soc_info | expand |
On Fri, Jul 16, 2021 at 3:13 PM Fabio Estevam <festevam@gmail.com> wrote: > The imx_pinctrl_soc_info structure content is never changed, so it can be > declared as 'const', like it is done on all other i.MX pinctrl drivers. > > Make it 'const' in this driver too. > > Reported-by: Dong Aisheng <aisheng.dong@nxp.com> > Signed-off-by: Fabio Estevam <festevam@gmail.com> Patch applied. Yours, Linus Walleij
diff --git a/drivers/pinctrl/freescale/pinctrl-imx8dxl.c b/drivers/pinctrl/freescale/pinctrl-imx8dxl.c index 041455c13d0d..f947b1d0d1aa 100644 --- a/drivers/pinctrl/freescale/pinctrl-imx8dxl.c +++ b/drivers/pinctrl/freescale/pinctrl-imx8dxl.c @@ -155,7 +155,7 @@ static const struct pinctrl_pin_desc imx8dxl_pinctrl_pads[] = { }; -static struct imx_pinctrl_soc_info imx8dxl_pinctrl_info = { +static const struct imx_pinctrl_soc_info imx8dxl_pinctrl_info = { .pins = imx8dxl_pinctrl_pads, .npins = ARRAY_SIZE(imx8dxl_pinctrl_pads), .flags = IMX_USE_SCU,
The imx_pinctrl_soc_info structure content is never changed, so it can be declared as 'const', like it is done on all other i.MX pinctrl drivers. Make it 'const' in this driver too. Reported-by: Dong Aisheng <aisheng.dong@nxp.com> Signed-off-by: Fabio Estevam <festevam@gmail.com> --- drivers/pinctrl/freescale/pinctrl-imx8dxl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)