diff options
author | 2024-08-21 12:49:27 +0100 | |
---|---|---|
committer | 2024-08-21 14:38:01 +0100 | |
commit | 6f6d8b2d49299492e704030632ab79257685e5d3 (patch) | |
tree | 02f4f0697a1888febd8d00fb22f61aca4eee17de | |
parent | ASoC: dt-bindings: Convert tpa6130a2.txt to yaml (diff) | |
download | wireguard-linux-6f6d8b2d49299492e704030632ab79257685e5d3.tar.xz wireguard-linux-6f6d8b2d49299492e704030632ab79257685e5d3.zip |
ASoC: codecs: wcd934x: make read-only array minCode_param static const
Don't populate the read-only array minCode_param on the stack at
run time, instead make it static const.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://patch.msgid.link/20240821114927.520193-1-colin.i.king@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/wcd934x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/wcd934x.c b/sound/soc/codecs/wcd934x.c index 291d0c80a6fc..910852eb9698 100644 --- a/sound/soc/codecs/wcd934x.c +++ b/sound/soc/codecs/wcd934x.c @@ -2643,8 +2643,8 @@ static void wcd934x_mbhc_get_result_params(struct wcd934x_codec *wcd934x, s16 c1; s32 x1, d1; int32_t denom; - int minCode_param[] = { - 3277, 1639, 820, 410, 205, 103, 52, 26 + static const int minCode_param[] = { + 3277, 1639, 820, 410, 205, 103, 52, 26 }; regmap_update_bits(wcd934x->regmap, WCD934X_ANA_MBHC_ZDET, 0x20, 0x20); |