aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/staging/goldfish
diff options
context:
space:
mode:
authorGreg Hackmann <ghackmann@google.com>2016-02-26 19:00:03 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-03-11 22:09:09 -0800
commit283ded10312a3b75e384313f6f529ec2c636cf2c (patch)
tree67c46dccacde63f2c4d4533f2856874e30ae2f86 /drivers/staging/goldfish
parentstaging: rtl8192e: rtllib_crypt_tkip: Remove unnecessary else after return (diff)
downloadwireguard-linux-283ded10312a3b75e384313f6f529ec2c636cf2c.tar.xz
wireguard-linux-283ded10312a3b75e384313f6f529ec2c636cf2c.zip
staging: goldfish: audio: add devicetree bindings
Introduce devicetree bindings to the Goldfish staging audio driver. Signed-off-by: Greg Hackmann <ghackmann@google.com> Signed-off-by: Jin Qian <jinqian@android.com> Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/goldfish')
-rw-r--r--drivers/staging/goldfish/goldfish_audio.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/staging/goldfish/goldfish_audio.c b/drivers/staging/goldfish/goldfish_audio.c
index 364fdcdd3a06..bb5c424a428b 100644
--- a/drivers/staging/goldfish/goldfish_audio.c
+++ b/drivers/staging/goldfish/goldfish_audio.c
@@ -344,11 +344,18 @@ static int goldfish_audio_remove(struct platform_device *pdev)
return 0;
}
+static const struct of_device_id goldfish_audio_of_match[] = {
+ { .compatible = "google,goldfish-audio", },
+ {},
+};
+MODULE_DEVICE_TABLE(of, goldfish_audio_of_match);
+
static struct platform_driver goldfish_audio_driver = {
.probe = goldfish_audio_probe,
.remove = goldfish_audio_remove,
.driver = {
- .name = "goldfish_audio"
+ .name = "goldfish_audio",
+ .of_match_table = goldfish_audio_of_match,
}
};