From: Javier Carrasco Date: Wed, 3 Jul 2024 09:50:20 +0000 (+0200) Subject: clk: lpc32xx: Constify struct regmap_config X-Git-Tag: v6.11-rc1~109^2~2^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b34303d9dc4f9cf2ea64285bbea26cd01a112c2;p=thirdparty%2Flinux.git clk: lpc32xx: Constify struct regmap_config `lpc32xx_scb_regmap_config` is not modified and can be declared as const to move its data to a read-only section. Signed-off-by: Javier Carrasco Link: https://lore.kernel.org/r/20240703-clk-const-regmap-v1-7-7d15a0671d6f@gmail.com Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/nxp/clk-lpc32xx.c b/drivers/clk/nxp/clk-lpc32xx.c index d0f870eff0d6a..e00f270bc6aa8 100644 --- a/drivers/clk/nxp/clk-lpc32xx.c +++ b/drivers/clk/nxp/clk-lpc32xx.c @@ -61,7 +61,7 @@ #define LPC32XX_USB_CLK_CTRL 0xF4 #define LPC32XX_USB_CLK_STS 0xF8 -static struct regmap_config lpc32xx_scb_regmap_config = { +static const struct regmap_config lpc32xx_scb_regmap_config = { .name = "scb", .reg_bits = 32, .val_bits = 32,