summaryrefslogtreecommitdiffstats
path: root/drivers/iommu
diff options
context:
space:
mode:
authorSachin Kamat2013-10-08 12:51:03 +0200
committerJoerg Roedel2013-11-01 14:23:20 +0100
commit8a788659af75ec0d82412cdca81953482529b342 (patch)
treecb21063a0a661335eb4d5ea7ff82710d58447b21 /drivers/iommu
parentiommu/tegra: gart: cleanup devm_* functions usage (diff)
downloadkernel-qcow2-linux-8a788659af75ec0d82412cdca81953482529b342.tar.gz
kernel-qcow2-linux-8a788659af75ec0d82412cdca81953482529b342.tar.xz
kernel-qcow2-linux-8a788659af75ec0d82412cdca81953482529b342.zip
iommu/tegra-gart: Staticize tegra_gart_pm_ops
'tegra_gart_pm_ops' is local to this file. Make it static. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Acked-by: Hiroshi Doyu <hdoyu@nvidia.com> Signed-off-by: Joerg Roedel <joro@8bytes.org>
Diffstat (limited to 'drivers/iommu')
-rw-r--r--drivers/iommu/tegra-gart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/tegra-gart.c b/drivers/iommu/tegra-gart.c
index f75483a3a2ef..dba1a9fd5070 100644
--- a/drivers/iommu/tegra-gart.c
+++ b/drivers/iommu/tegra-gart.c
@@ -411,7 +411,7 @@ static int tegra_gart_remove(struct platform_device *pdev)
return 0;
}
-const struct dev_pm_ops tegra_gart_pm_ops = {
+static const struct dev_pm_ops tegra_gart_pm_ops = {
.suspend = tegra_gart_suspend,
.resume = tegra_gart_resume,
};