From: Sachin Kamat Date: Tue, 8 Oct 2013 10:51:04 +0000 (+0530) Subject: iommu/tegra-smmu: Staticize tegra_smmu_pm_ops X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=a33a97c5c72cd0ffe292c0fd4c5f9c8957431a04;p=deliverable%2Flinux.git iommu/tegra-smmu: Staticize tegra_smmu_pm_ops 'tegra_smmu_pm_ops' is used only in this file. Make it static. Signed-off-by: Sachin Kamat Acked-by: Hiroshi Doyu Signed-off-by: Joerg Roedel --- diff --git a/drivers/iommu/tegra-smmu.c b/drivers/iommu/tegra-smmu.c index 34374b3bc13b..605b5b46a903 100644 --- a/drivers/iommu/tegra-smmu.c +++ b/drivers/iommu/tegra-smmu.c @@ -1254,7 +1254,7 @@ static int tegra_smmu_remove(struct platform_device *pdev) return 0; } -const struct dev_pm_ops tegra_smmu_pm_ops = { +static const struct dev_pm_ops tegra_smmu_pm_ops = { .suspend = tegra_smmu_suspend, .resume = tegra_smmu_resume, };