diff options
Diffstat (limited to 'sound/soc/tegra/tegra30_ahub.c')
-rw-r--r-- | sound/soc/tegra/tegra30_ahub.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sound/soc/tegra/tegra30_ahub.c b/sound/soc/tegra/tegra30_ahub.c index 64b67a309196..f354dc390a0b 100644 --- a/sound/soc/tegra/tegra30_ahub.c +++ b/sound/soc/tegra/tegra30_ahub.c | |||
@@ -287,7 +287,7 @@ int tegra30_ahub_unset_rx_cif_source(enum tegra30_ahub_rxcif rxcif) | |||
287 | } | 287 | } |
288 | EXPORT_SYMBOL_GPL(tegra30_ahub_unset_rx_cif_source); | 288 | EXPORT_SYMBOL_GPL(tegra30_ahub_unset_rx_cif_source); |
289 | 289 | ||
290 | static const char * const configlink_clocks[] __devinitconst = { | 290 | static const char * const configlink_clocks[] = { |
291 | "i2s0", | 291 | "i2s0", |
292 | "i2s1", | 292 | "i2s1", |
293 | "i2s2", | 293 | "i2s2", |
@@ -299,7 +299,7 @@ static const char * const configlink_clocks[] __devinitconst = { | |||
299 | "spdif_in", | 299 | "spdif_in", |
300 | }; | 300 | }; |
301 | 301 | ||
302 | struct of_dev_auxdata ahub_auxdata[] __devinitdata = { | 302 | struct of_dev_auxdata ahub_auxdata[] = { |
303 | OF_DEV_AUXDATA("nvidia,tegra30-i2s", 0x70080300, "tegra30-i2s.0", NULL), | 303 | OF_DEV_AUXDATA("nvidia,tegra30-i2s", 0x70080300, "tegra30-i2s.0", NULL), |
304 | OF_DEV_AUXDATA("nvidia,tegra30-i2s", 0x70080400, "tegra30-i2s.1", NULL), | 304 | OF_DEV_AUXDATA("nvidia,tegra30-i2s", 0x70080400, "tegra30-i2s.1", NULL), |
305 | OF_DEV_AUXDATA("nvidia,tegra30-i2s", 0x70080500, "tegra30-i2s.2", NULL), | 305 | OF_DEV_AUXDATA("nvidia,tegra30-i2s", 0x70080500, "tegra30-i2s.2", NULL), |
@@ -433,7 +433,7 @@ static const struct regmap_config tegra30_ahub_ahub_regmap_config = { | |||
433 | .cache_type = REGCACHE_RBTREE, | 433 | .cache_type = REGCACHE_RBTREE, |
434 | }; | 434 | }; |
435 | 435 | ||
436 | static int __devinit tegra30_ahub_probe(struct platform_device *pdev) | 436 | static int tegra30_ahub_probe(struct platform_device *pdev) |
437 | { | 437 | { |
438 | struct clk *clk; | 438 | struct clk *clk; |
439 | int i; | 439 | int i; |
@@ -585,7 +585,7 @@ err: | |||
585 | return ret; | 585 | return ret; |
586 | } | 586 | } |
587 | 587 | ||
588 | static int __devexit tegra30_ahub_remove(struct platform_device *pdev) | 588 | static int tegra30_ahub_remove(struct platform_device *pdev) |
589 | { | 589 | { |
590 | if (!ahub) | 590 | if (!ahub) |
591 | return -ENODEV; | 591 | return -ENODEV; |
@@ -602,19 +602,19 @@ static int __devexit tegra30_ahub_remove(struct platform_device *pdev) | |||
602 | return 0; | 602 | return 0; |
603 | } | 603 | } |
604 | 604 | ||
605 | static const struct of_device_id tegra30_ahub_of_match[] __devinitconst = { | 605 | static const struct of_device_id tegra30_ahub_of_match[] = { |
606 | { .compatible = "nvidia,tegra30-ahub", }, | 606 | { .compatible = "nvidia,tegra30-ahub", }, |
607 | {}, | 607 | {}, |
608 | }; | 608 | }; |
609 | 609 | ||
610 | static const struct dev_pm_ops tegra30_ahub_pm_ops __devinitconst = { | 610 | static const struct dev_pm_ops tegra30_ahub_pm_ops = { |
611 | SET_RUNTIME_PM_OPS(tegra30_ahub_runtime_suspend, | 611 | SET_RUNTIME_PM_OPS(tegra30_ahub_runtime_suspend, |
612 | tegra30_ahub_runtime_resume, NULL) | 612 | tegra30_ahub_runtime_resume, NULL) |
613 | }; | 613 | }; |
614 | 614 | ||
615 | static struct platform_driver tegra30_ahub_driver = { | 615 | static struct platform_driver tegra30_ahub_driver = { |
616 | .probe = tegra30_ahub_probe, | 616 | .probe = tegra30_ahub_probe, |
617 | .remove = __devexit_p(tegra30_ahub_remove), | 617 | .remove = tegra30_ahub_remove, |
618 | .driver = { | 618 | .driver = { |
619 | .name = DRV_NAME, | 619 | .name = DRV_NAME, |
620 | .owner = THIS_MODULE, | 620 | .owner = THIS_MODULE, |