diff options
Diffstat (limited to 'drivers/dma/tegra20-apb-dma.c')
-rw-r--r-- | drivers/dma/tegra20-apb-dma.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dma/tegra20-apb-dma.c b/drivers/dma/tegra20-apb-dma.c index efdfffa13349..c39e61bc8172 100644 --- a/drivers/dma/tegra20-apb-dma.c +++ b/drivers/dma/tegra20-apb-dma.c | |||
@@ -1184,7 +1184,7 @@ static const struct tegra_dma_chip_data tegra30_dma_chip_data = { | |||
1184 | .max_dma_count = 1024UL * 64, | 1184 | .max_dma_count = 1024UL * 64, |
1185 | }; | 1185 | }; |
1186 | 1186 | ||
1187 | static const struct of_device_id tegra_dma_of_match[] __devinitconst = { | 1187 | static const struct of_device_id tegra_dma_of_match[] = { |
1188 | { | 1188 | { |
1189 | .compatible = "nvidia,tegra30-apbdma", | 1189 | .compatible = "nvidia,tegra30-apbdma", |
1190 | .data = &tegra30_dma_chip_data, | 1190 | .data = &tegra30_dma_chip_data, |
@@ -1360,7 +1360,7 @@ err_pm_disable: | |||
1360 | return ret; | 1360 | return ret; |
1361 | } | 1361 | } |
1362 | 1362 | ||
1363 | static int __devexit tegra_dma_remove(struct platform_device *pdev) | 1363 | static int tegra_dma_remove(struct platform_device *pdev) |
1364 | { | 1364 | { |
1365 | struct tegra_dma *tdma = platform_get_drvdata(pdev); | 1365 | struct tegra_dma *tdma = platform_get_drvdata(pdev); |
1366 | int i; | 1366 | int i; |
@@ -1403,7 +1403,7 @@ static int tegra_dma_runtime_resume(struct device *dev) | |||
1403 | return 0; | 1403 | return 0; |
1404 | } | 1404 | } |
1405 | 1405 | ||
1406 | static const struct dev_pm_ops tegra_dma_dev_pm_ops __devinitconst = { | 1406 | static const struct dev_pm_ops tegra_dma_dev_pm_ops = { |
1407 | #ifdef CONFIG_PM_RUNTIME | 1407 | #ifdef CONFIG_PM_RUNTIME |
1408 | .runtime_suspend = tegra_dma_runtime_suspend, | 1408 | .runtime_suspend = tegra_dma_runtime_suspend, |
1409 | .runtime_resume = tegra_dma_runtime_resume, | 1409 | .runtime_resume = tegra_dma_runtime_resume, |