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>
This commit is contained in:
Sachin Kamat 2013-10-08 16:21:03 +05:30 committed by Joerg Roedel
parent d0c5b25795
commit 8a788659af

View File

@ -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,
};