projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf95919
)
ASoC: codecs: lpass-rx-macro: Use unsigned for number of widgets
author
Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org>
Mon, 1 Jul 2024 07:39:37 +0000
(09:39 +0200)
committer
Mark Brown
<broonie@kernel.org>
Wed, 3 Jul 2024 20:43:41 +0000
(21:43 +0100)
Driver uses ARRAY_SIZE() to get number of widgets later passed to
snd_soc_dapm_new_controls(), which is an 'unsigned int'.
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link:
https://patch.msgid.link/20240701-b4-qcom-audio-lpass-codec-cleanups-v3-5-6d98d4dd1ef5@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/lpass-rx-macro.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/lpass-rx-macro.c
b/sound/soc/codecs/lpass-rx-macro.c
index
d4d7e02
..
ce42749
100644
(file)
--- a/
sound/soc/codecs/lpass-rx-macro.c
+++ b/
sound/soc/codecs/lpass-rx-macro.c
@@
-3612,8
+3612,8
@@
static int rx_macro_component_probe(struct snd_soc_component *component)
struct rx_macro *rx = snd_soc_component_get_drvdata(component);
const struct snd_soc_dapm_widget *widgets;
const struct snd_kcontrol_new *controls;
- unsigned int num_controls;
- int ret
, num_widgets
;
+ unsigned int num_controls
, num_widgets
;
+ int ret;
snd_soc_component_init_regmap(component, rx->regmap);