diff options
author | Marek Belisko <marek.belisko@gmail.com> | 2013-04-25 09:13:14 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-05-12 12:51:06 -0400 |
commit | f9c8ba8965597bb45b95014338d59ade15d53e93 (patch) | |
tree | 664ca414cd3c28dc2b9e9c7dd34a2a3f174cdc8d /sound/soc/codecs/spdif_receiver.c | |
parent | 1b7c8b350fd4751051f0abba040a29b72f829665 (diff) |
ASoC: spdif_receiver: Add DT support.
Add devicetree support for this dummy audio soc driver.
Signed-off-by: Michal Bachraty <michal.bachraty@streamunlimited.com>
Signed-off-by: Marek Belisko <marek.belisko@streamunlimited.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/spdif_receiver.c')
-rw-r--r-- | sound/soc/codecs/spdif_receiver.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sound/soc/codecs/spdif_receiver.c b/sound/soc/codecs/spdif_receiver.c index dd8d856053fc..e9d7881ed2c8 100644 --- a/sound/soc/codecs/spdif_receiver.c +++ b/sound/soc/codecs/spdif_receiver.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <sound/soc.h> | 21 | #include <sound/soc.h> |
22 | #include <sound/pcm.h> | 22 | #include <sound/pcm.h> |
23 | #include <sound/initval.h> | 23 | #include <sound/initval.h> |
24 | #include <linux/of.h> | ||
24 | 25 | ||
25 | #define STUB_RATES SNDRV_PCM_RATE_8000_192000 | 26 | #define STUB_RATES SNDRV_PCM_RATE_8000_192000 |
26 | #define STUB_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \ | 27 | #define STUB_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \ |
@@ -51,12 +52,21 @@ static int spdif_dir_remove(struct platform_device *pdev) | |||
51 | return 0; | 52 | return 0; |
52 | } | 53 | } |
53 | 54 | ||
55 | #ifdef CONFIG_OF | ||
56 | static const struct of_device_id spdif_dir_dt_ids[] = { | ||
57 | { .compatible = "linux,spdif-dir", }, | ||
58 | { } | ||
59 | }; | ||
60 | MODULE_DEVICE_TABLE(of, spdif_dir_dt_ids); | ||
61 | #endif | ||
62 | |||
54 | static struct platform_driver spdif_dir_driver = { | 63 | static struct platform_driver spdif_dir_driver = { |
55 | .probe = spdif_dir_probe, | 64 | .probe = spdif_dir_probe, |
56 | .remove = spdif_dir_remove, | 65 | .remove = spdif_dir_remove, |
57 | .driver = { | 66 | .driver = { |
58 | .name = "spdif-dir", | 67 | .name = "spdif-dir", |
59 | .owner = THIS_MODULE, | 68 | .owner = THIS_MODULE, |
69 | .of_match_table = of_match_ptr(spdif_dir_dt_ids), | ||
60 | }, | 70 | }, |
61 | }; | 71 | }; |
62 | 72 | ||