]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
Input: stmfts - mark all PM functions as __maybe_unused
authorArnd Bergmann <arnd@arndb.de>
Fri, 9 Jun 2017 16:54:09 +0000 (09:54 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Fri, 9 Jun 2017 16:54:56 +0000 (09:54 -0700)
We get a harmless warning when CONFIG_RUNTIME_PM is disabled:

drivers/input/touchscreen/stmfts.c:760:12: error: 'stmfts_runtime_resume' defined but not used [-Werror=unused-function]
 static int stmfts_runtime_resume(struct device *dev)
drivers/input/touchscreen/stmfts.c:748:12: error: 'stmfts_runtime_suspend' defined but not used [-Werror=unused-function]
 static int stmfts_runtime_suspend(struct device *dev)

The regular PM functions are already marked as __maybe_unused, so let's
do the same for the runtime-PM as well.

Fixes: 78bcac7b2ae1 ("Input: add support for the STMicroelectronics FingerTip touchscreen")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/touchscreen/stmfts.c

index 802d0e82d034fa1c913f057990d07a7d8fadd730..157fdb4bb2e8ba931697d18281afb3887beceaca 100644 (file)
@@ -745,7 +745,7 @@ static int stmfts_remove(struct i2c_client *client)
        return 0;
 }
 
-static int stmfts_runtime_suspend(struct device *dev)
+static int __maybe_unused stmfts_runtime_suspend(struct device *dev)
 {
        struct stmfts_data *sdata = dev_get_drvdata(dev);
        int ret;
@@ -757,7 +757,7 @@ static int stmfts_runtime_suspend(struct device *dev)
        return ret;
 }
 
-static int stmfts_runtime_resume(struct device *dev)
+static int __maybe_unused stmfts_runtime_resume(struct device *dev)
 {
        struct stmfts_data *sdata = dev_get_drvdata(dev);
        int ret;