We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 283fb16 commit 0b9545aCopy full SHA for 0b9545a
sound/soc/sunxi/sunxi-hdmi.c
@@ -294,12 +294,21 @@ static void sunxi_hdmi_codec_remove(struct snd_soc_component *component)
294
}
295
296
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
+
305
static struct snd_soc_component_driver soc_codec_dev_sunxi_hdmi = {
306
.name = "sunxi-hdmiaudio",
307
.probe = sunxi_hdmi_codec_probe,
308
.remove = sunxi_hdmi_codec_remove,
309
.suspend = sunxi_hdmi_codec_suspend,
310
.resume = sunxi_hdmi_codec_resume,
311
+ .set_pll = sunxi_hdmi_codec_set_pll,
312
};
313
314
static int sunxi_hdmi_codec_dev_probe(struct platform_device *pdev)
0 commit comments