]> Git Repo - linux.git/commitdiff
iommu: qcom: annotate PM functions as __maybe_unused
authorArnd Bergmann <[email protected]>
Wed, 23 Aug 2017 13:42:45 +0000 (15:42 +0200)
committerJoerg Roedel <[email protected]>
Mon, 28 Aug 2017 09:24:52 +0000 (11:24 +0200)
The qcom_iommu_disable_clocks() function is only called from PM
code that is hidden in an #ifdef, causing a harmless warning without
CONFIG_PM:

drivers/iommu/qcom_iommu.c:601:13: error: 'qcom_iommu_disable_clocks' defined but not used [-Werror=unused-function]
 static void qcom_iommu_disable_clocks(struct qcom_iommu_dev *qcom_iommu)
drivers/iommu/qcom_iommu.c:581:12: error: 'qcom_iommu_enable_clocks' defined but not used [-Werror=unused-function]
 static int qcom_iommu_enable_clocks(struct qcom_iommu_dev *qcom_iommu)

Replacing that #ifdef with __maybe_unused annotations lets the compiler
drop the functions silently instead.

Fixes: 0ae349a0f33f ("iommu/qcom: Add qcom_iommu")
Acked-by: Rob Clark <[email protected]>
Signed-off-by: Arnd Bergmann <[email protected]>
Signed-off-by: Joerg Roedel <[email protected]>
drivers/iommu/qcom_iommu.c

index 48b62aa52787d923f2209e3f8d9e4225e9a68c0c..c8a587d034b0d7e75d276af1b8c7cdc9e02e5aad 100644 (file)
@@ -860,8 +860,7 @@ static int qcom_iommu_device_remove(struct platform_device *pdev)
        return 0;
 }
 
-#ifdef CONFIG_PM
-static int qcom_iommu_resume(struct device *dev)
+static int __maybe_unused qcom_iommu_resume(struct device *dev)
 {
        struct platform_device *pdev = to_platform_device(dev);
        struct qcom_iommu_dev *qcom_iommu = platform_get_drvdata(pdev);
@@ -869,7 +868,7 @@ static int qcom_iommu_resume(struct device *dev)
        return qcom_iommu_enable_clocks(qcom_iommu);
 }
 
-static int qcom_iommu_suspend(struct device *dev)
+static int __maybe_unused qcom_iommu_suspend(struct device *dev)
 {
        struct platform_device *pdev = to_platform_device(dev);
        struct qcom_iommu_dev *qcom_iommu = platform_get_drvdata(pdev);
@@ -878,7 +877,6 @@ static int qcom_iommu_suspend(struct device *dev)
 
        return 0;
 }
-#endif
 
 static const struct dev_pm_ops qcom_iommu_pm_ops = {
        SET_RUNTIME_PM_OPS(qcom_iommu_suspend, qcom_iommu_resume, NULL)
This page took 0.057949 seconds and 4 git commands to generate.