mfd: ipaq-micro: Use __maybe_unused to hide pm functions
authorArnd Bergmann <arnd@arndb.de>
Wed, 2 Mar 2016 15:58:57 +0000 (16:58 +0100)
committerLee Jones <lee.jones@linaro.org>
Wed, 16 Mar 2016 08:50:41 +0000 (08:50 +0000)
The ipaq-micro driver uses SET_SYSTEM_SLEEP_PM_OPS() to
remove the reference to its resume function, but does
not use an #ifdef around the definition, so we get
a build warning:

drivers/mfd/ipaq-micro.c:379:12: error: 'micro_resume' defined but not used [-Werror=unused-function]

This adds a __maybe_unused annotation so the compiler knows
it can silently drop it instead of warning.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/ipaq-micro.c

index a41859c55bda5cbc79c48aaae4ead5a0eba4d323..df16fd1df68be61b00f093d279400abe28660cc8 100644 (file)
@@ -376,7 +376,7 @@ static const struct mfd_cell micro_cells[] = {
        { .name = "ipaq-micro-leds", },
 };
 
-static int micro_resume(struct device *dev)
+static int __maybe_unused micro_resume(struct device *dev)
 {
        struct ipaq_micro *micro = dev_get_drvdata(dev);
 
This page took 0.025673 seconds and 5 git commands to generate.