aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/tegra
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2011-11-22 20:21:18 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-11-23 06:05:08 -0500
commit186bcda6f6217dc4b5353c3474121bc1194847f6 (patch)
treefc2ac1da5e5eb8d2f63f032140743d522aaad7a5 /sound/soc/tegra
parent85e7652d89293a6dab42bfd31f276f8bc072d4c5 (diff)
ASoC: Tegra DAS: Add device tree binding
Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/tegra')
-rw-r--r--sound/soc/tegra/tegra_das.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sound/soc/tegra/tegra_das.c b/sound/soc/tegra/tegra_das.c
index fa3a4426cbdd..5b82b4e79231 100644
--- a/sound/soc/tegra/tegra_das.c
+++ b/sound/soc/tegra/tegra_das.c
@@ -225,11 +225,18 @@ static int __devexit tegra_das_remove(struct platform_device *pdev)
225 return 0; 225 return 0;
226} 226}
227 227
228static const struct of_device_id tegra_das_of_match[] __devinitconst = {
229 { .compatible = "nvidia,tegra20-das", },
230 {},
231};
232
228static struct platform_driver tegra_das_driver = { 233static struct platform_driver tegra_das_driver = {
229 .probe = tegra_das_probe, 234 .probe = tegra_das_probe,
230 .remove = __devexit_p(tegra_das_remove), 235 .remove = __devexit_p(tegra_das_remove),
231 .driver = { 236 .driver = {
232 .name = DRV_NAME, 237 .name = DRV_NAME,
238 .owner = THIS_MODULE,
239 .of_match_table = tegra_das_of_match,
233 }, 240 },
234}; 241};
235module_platform_driver(tegra_das_driver); 242module_platform_driver(tegra_das_driver);
@@ -238,3 +245,4 @@ MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
238MODULE_DESCRIPTION("Tegra DAS driver"); 245MODULE_DESCRIPTION("Tegra DAS driver");
239MODULE_LICENSE("GPL"); 246MODULE_LICENSE("GPL");
240MODULE_ALIAS("platform:" DRV_NAME); 247MODULE_ALIAS("platform:" DRV_NAME);
248MODULE_DEVICE_TABLE(of, tegra_das_of_match);