]> asedeno.scripts.mit.edu Git - linux.git/commit
iommu/omap: Mark pm functions __maybe_unused
authorArnd Bergmann <arnd@arndb.de>
Fri, 6 Sep 2019 15:15:38 +0000 (17:15 +0200)
committerJoerg Roedel <jroedel@suse.de>
Fri, 6 Sep 2019 15:55:21 +0000 (17:55 +0200)
commit96088a203a0b6c7564bc14167eec89c5427fd18e
tree53c2ea06a436f6476da7f53325f83318e65861ef
parent24ce0bab260b59964629bb4d9570f0548b89e490
iommu/omap: Mark pm functions __maybe_unused

The runtime_pm functions are unused when CONFIG_PM is disabled:

drivers/iommu/omap-iommu.c:1022:12: error: unused function 'omap_iommu_runtime_suspend' [-Werror,-Wunused-function]
static int omap_iommu_runtime_suspend(struct device *dev)
drivers/iommu/omap-iommu.c:1064:12: error: unused function 'omap_iommu_runtime_resume' [-Werror,-Wunused-function]
static int omap_iommu_runtime_resume(struct device *dev)

Mark them as __maybe_unused to let gcc silently drop them
instead of warning.

Fixes: db8918f61d51 ("iommu/omap: streamline enable/disable through runtime pm callbacks")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/omap-iommu.c