ASoC: sun8i-codec: Use snd_soc_dai_get_drvdata
authorSamuel Holland <samuel@sholland.org>
Thu, 1 Oct 2020 02:11:31 +0000 (21:11 -0500)
committerMark Brown <broonie@kernel.org>
Mon, 5 Oct 2020 13:16:21 +0000 (14:16 +0100)
Remove a level of indirection by getting the device directly from the
passed-in struct snd_soc_dai, instead of going through its component.

Signed-off-by: Samuel Holland <samuel@sholland.org>
Acked-by: Maxime Ripard <mripard@kernel.org>
Link: https://lore.kernel.org/r/20201001021148.15852-9-samuel@sholland.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sunxi/sun8i-codec.c

index 578c0c0..7590c4b 100644 (file)
@@ -167,7 +167,7 @@ static int sun8i_codec_get_hw_rate(struct snd_pcm_hw_params *params)
 
 static int sun8i_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
 {
-       struct sun8i_codec *scodec = snd_soc_component_get_drvdata(dai->component);
+       struct sun8i_codec *scodec = snd_soc_dai_get_drvdata(dai);
        u32 value;
 
        /* clock masters */
@@ -299,7 +299,7 @@ static int sun8i_codec_hw_params(struct snd_pcm_substream *substream,
                                 struct snd_pcm_hw_params *params,
                                 struct snd_soc_dai *dai)
 {
-       struct sun8i_codec *scodec = snd_soc_component_get_drvdata(dai->component);
+       struct sun8i_codec *scodec = snd_soc_dai_get_drvdata(dai);
        int sample_rate, lrck_div;
        u8 bclk_div;