Skip to content

Commit bd2d330

Browse files
javiercarrascocruzandersson
authored andcommitted
clk: qcom: lpasscc-sc8280xp: Constify struct regmap_config
`lpass_audiocc_sc8280xp_regmap_config` and `lpasscc_sc8280x_regmap_config` are not modified and can be declared as const to move their data to a read-only section. Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Link: https://lore.kernel.org/r/20240703-clk-const-regmap-v1-8-7d15a0671d6f@gmail.com Signed-off-by: Bjorn Andersson <andersson@kernel.org>
1 parent f27e42c commit bd2d330

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/clk/qcom/lpasscc-sc8280xp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ static const struct qcom_reset_map lpass_audiocc_sc8280xp_resets[] = {
2323
[LPASS_AUDIO_SWR_WSA2_CGCR] = { 0xd8, 1 },
2424
};
2525

26-
static struct regmap_config lpass_audiocc_sc8280xp_regmap_config = {
26+
static const struct regmap_config lpass_audiocc_sc8280xp_regmap_config = {
2727
.reg_bits = 32,
2828
.reg_stride = 4,
2929
.val_bits = 32,
@@ -41,7 +41,7 @@ static const struct qcom_reset_map lpasscc_sc8280xp_resets[] = {
4141
[LPASS_AUDIO_SWR_TX_CGCR] = { 0xc010, 1 },
4242
};
4343

44-
static struct regmap_config lpasscc_sc8280xp_regmap_config = {
44+
static const struct regmap_config lpasscc_sc8280xp_regmap_config = {
4545
.reg_bits = 32,
4646
.reg_stride = 4,
4747
.val_bits = 32,

0 commit comments

Comments
 (0)