mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-29 17:25:38 +00:00
mfd: sprd-sc27xx-spi: Constify struct regmap_bus
`sprd_pmic_regmap` is not modified and can be declared as const to move its data to a read-only section. Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com> Reviewed-by: Baolin Wang <baolin.wang@linux.alibaba.com> Link: https://lore.kernel.org/r/20240704-mfd-const-regmap_config-v2-24-0c8785b1331d@gmail.com Signed-off-by: Lee Jones <lee@kernel.org>
This commit is contained in:
parent
ef29932370
commit
691277c90c
@ -135,7 +135,7 @@ static int sprd_pmic_spi_read(void *context,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct regmap_bus sprd_pmic_regmap = {
|
||||
static const struct regmap_bus sprd_pmic_regmap = {
|
||||
.write = sprd_pmic_spi_write,
|
||||
.read = sprd_pmic_spi_read,
|
||||
.reg_format_endian_default = REGMAP_ENDIAN_NATIVE,
|
||||
|
Loading…
Reference in New Issue
Block a user