[PATCH] ASoC: codecs:rx-macro: Fixing uninitialized variables.

From: Ravulapati Vishnu Vardhan Rao
Date: Thu Mar 16 2023 - 12:23:52 EST


Initializing the uninitialized variables to avoid any unexpected garbage
value to be propagated further.

Signed-off-by: Ravulapati Vishnu Vardhan Rao <quic_visr@xxxxxxxxxxx>
---
sound/soc/codecs/lpass-rx-macro.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/sound/soc/codecs/lpass-rx-macro.c b/sound/soc/codecs/lpass-rx-macro.c
index a73a7d7a1c0a..0c8b79ff2fc5 100644
--- a/sound/soc/codecs/lpass-rx-macro.c
+++ b/sound/soc/codecs/lpass-rx-macro.c
@@ -2219,6 +2219,8 @@ static void rx_macro_hd2_control(struct snd_soc_component *component,
u16 interp_idx, int event)
{
u16 hd2_scale_reg, hd2_enable_reg;
+ hd2_scale_reg = 0;
+ hd2_enable_reg = 0;

switch (interp_idx) {
case INTERP_HPHL:
--
2.17.1