diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2013-07-04 19:42:49 -0700 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-07-15 11:05:23 +0100 |
commit | b25f77815021ec6e7400a82c4984b9c80699ce80 (patch) | |
tree | 555e38e2380f1031cba6fc776a82d6d59f26d942 /sound/soc/codecs/ak4554.c | |
parent | a2911cdb1fd09de7c0da3938ffab1bc5cedda4f9 (diff) |
ASoC: ak4554: add DT support
Support for loading the ak4554 codec module via devicetree.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/codecs/ak4554.c')
-rw-r--r-- | sound/soc/codecs/ak4554.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/soc/codecs/ak4554.c b/sound/soc/codecs/ak4554.c index c1a1733f8a3..6aed9c4d06d 100644 --- a/sound/soc/codecs/ak4554.c +++ b/sound/soc/codecs/ak4554.c @@ -64,10 +64,17 @@ static int ak4554_soc_remove(struct platform_device *pdev) return 0; } +static struct of_device_id ak4554_of_match[] = { + { .compatible = "asahi-kasei,ak4554" }, + {}, +}; +MODULE_DEVICE_TABLE(of, ak4554_of_match); + static struct platform_driver ak4554_driver = { .driver = { .name = "ak4554-adc-dac", .owner = THIS_MODULE, + .of_match_table = ak4554_of_match, }, .probe = ak4554_soc_probe, .remove = ak4554_soc_remove, |