From: Javier Carrasco Date: Fri, 5 Jul 2024 06:05:18 +0000 (+0200) Subject: bus: sunxi-rsb: Constify struct regmap_bus X-Git-Tag: v6.11-rc1~189^2~5^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4b5a39c2fca597f10f1aa4c12f8f90dcd9431bd;p=thirdparty%2Flinux.git bus: sunxi-rsb: Constify struct regmap_bus `regmap_sunxi_rsb` 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/20240705-sunxi-rsb-bus-const-regmap_bus-v1-1-129094960ce9@gmail.com Signed-off-by: Chen-Yu Tsai --- diff --git a/drivers/bus/sunxi-rsb.c b/drivers/bus/sunxi-rsb.c index 1e29ba76615d6..ac6c7e4900f41 100644 --- a/drivers/bus/sunxi-rsb.c +++ b/drivers/bus/sunxi-rsb.c @@ -457,7 +457,7 @@ static void regmap_sunxi_rsb_free_ctx(void *context) kfree(ctx); } -static struct regmap_bus regmap_sunxi_rsb = { +static const struct regmap_bus regmap_sunxi_rsb = { .reg_write = regmap_sunxi_rsb_reg_write, .reg_read = regmap_sunxi_rsb_reg_read, .free_context = regmap_sunxi_rsb_free_ctx,