diff options
author | Kuninori Morimoto <[email protected]> | 2024-10-24 01:29:34 +0000 |
---|---|---|
committer | Mark Brown <[email protected]> | 2024-11-01 14:48:12 +0000 |
commit | 970a874b76d09d6a5880e8832e572850cfcb4008 (patch) | |
tree | 1229e32fa4c235d330b0c74c2cd4e561a4aff25f | |
parent | b19f75df8fa9f8d4aa8b5886dca0f2d832a76baa (diff) |
ASoC: sh: switch to use rtd->id from rtd->num
Now rtd->num is renamed to rtd->id. Let's switch.
Signed-off-by: Kuninori Morimoto <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/renesas/rcar/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/renesas/rcar/core.c b/sound/soc/renesas/rcar/core.c index c32e88d6a141..e2234928c9e8 100644 --- a/sound/soc/renesas/rcar/core.c +++ b/sound/soc/renesas/rcar/core.c @@ -1843,7 +1843,7 @@ int rsnd_kctrl_new(struct rsnd_mod *mod, .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = name, .info = rsnd_kctrl_info, - .index = rtd->num, + .index = rtd->id, .get = rsnd_kctrl_get, .put = rsnd_kctrl_put, }; |