Skip to content

Commit 0b9545a

Browse files
committed
ASoC: sunxi: hdmi: add set_pll returning -ENOTSUPP
1 parent 283fb16 commit 0b9545a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

sound/soc/sunxi/sunxi-hdmi.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,12 +294,21 @@ static void sunxi_hdmi_codec_remove(struct snd_soc_component *component)
294294
}
295295
}
296296

297+
static int sunxi_hdmi_codec_set_pll(struct snd_soc_component *component,
298+
int pll_id, int source,
299+
unsigned int freq_in,
300+
unsigned int freq_out)
301+
{
302+
return -ENOTSUPP;
303+
}
304+
297305
static struct snd_soc_component_driver soc_codec_dev_sunxi_hdmi = {
298306
.name = "sunxi-hdmiaudio",
299307
.probe = sunxi_hdmi_codec_probe,
300308
.remove = sunxi_hdmi_codec_remove,
301309
.suspend = sunxi_hdmi_codec_suspend,
302310
.resume = sunxi_hdmi_codec_resume,
311+
.set_pll = sunxi_hdmi_codec_set_pll,
303312
};
304313

305314
static int sunxi_hdmi_codec_dev_probe(struct platform_device *pdev)

0 commit comments

Comments
 (0)