aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/devicetree/bindings/sound/spdif-receiver.txt10
-rw-r--r--sound/soc/codecs/spdif_receiver.c10
2 files changed, 20 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/sound/spdif-receiver.txt b/Documentation/devicetree/bindings/sound/spdif-receiver.txt
new file mode 100644
index 000000000000..80f807bf8a1d
--- /dev/null
+++ b/Documentation/devicetree/bindings/sound/spdif-receiver.txt
@@ -0,0 +1,10 @@
1Device-Tree bindings for dummy spdif receiver
2
3Required properties:
4 - compatible: should be "linux,spdif-dir".
5
6Example node:
7
8 codec: spdif-receiver {
9 compatible = "linux,spdif-dir";
10 };
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
56static const struct of_device_id spdif_dir_dt_ids[] = {
57 { .compatible = "linux,spdif-dir", },
58 { }
59};
60MODULE_DEVICE_TABLE(of, spdif_dir_dt_ids);
61#endif
62
54static struct platform_driver spdif_dir_driver = { 63static 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