Commit 030a79e9 authored by Paul Cercueil's avatar Paul Cercueil Committed by Mark Brown

ASoC: codecs: jz4740: Add support for devicetree

Add support for probing the driver from devicetree.
Signed-off-by: default avatarPaul Cercueil <paul@crapouillou.net>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 06a334ae
...@@ -346,10 +346,19 @@ static int jz4740_codec_probe(struct platform_device *pdev) ...@@ -346,10 +346,19 @@ static int jz4740_codec_probe(struct platform_device *pdev)
return ret; return ret;
} }
#ifdef CONFIG_OF
static const struct of_device_id jz4740_codec_of_matches[] = {
{ .compatible = "ingenic,jz4740-codec", },
{ }
};
MODULE_DEVICE_TABLE(of, jz4740_codec_of_matches);
#endif
static struct platform_driver jz4740_codec_driver = { static struct platform_driver jz4740_codec_driver = {
.probe = jz4740_codec_probe, .probe = jz4740_codec_probe,
.driver = { .driver = {
.name = "jz4740-codec", .name = "jz4740-codec",
.of_match_table = of_match_ptr(jz4740_codec_of_matches),
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment