aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/tegra20-apb-dma.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dma/tegra20-apb-dma.c')
-rw-r--r--drivers/dma/tegra20-apb-dma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dma/tegra20-apb-dma.c b/drivers/dma/tegra20-apb-dma.c
index 528c62dd4b00..efdfffa13349 100644
--- a/drivers/dma/tegra20-apb-dma.c
+++ b/drivers/dma/tegra20-apb-dma.c
@@ -1197,7 +1197,7 @@ static const struct of_device_id tegra_dma_of_match[] __devinitconst = {
1197MODULE_DEVICE_TABLE(of, tegra_dma_of_match); 1197MODULE_DEVICE_TABLE(of, tegra_dma_of_match);
1198#endif 1198#endif
1199 1199
1200static int __devinit tegra_dma_probe(struct platform_device *pdev) 1200static int tegra_dma_probe(struct platform_device *pdev)
1201{ 1201{
1202 struct resource *res; 1202 struct resource *res;
1203 struct tegra_dma *tdma; 1203 struct tegra_dma *tdma;
@@ -1418,7 +1418,7 @@ static struct platform_driver tegra_dmac_driver = {
1418 .of_match_table = of_match_ptr(tegra_dma_of_match), 1418 .of_match_table = of_match_ptr(tegra_dma_of_match),
1419 }, 1419 },
1420 .probe = tegra_dma_probe, 1420 .probe = tegra_dma_probe,
1421 .remove = __devexit_p(tegra_dma_remove), 1421 .remove = tegra_dma_remove,
1422}; 1422};
1423 1423
1424module_platform_driver(tegra_dmac_driver); 1424module_platform_driver(tegra_dmac_driver);