slimbus: ngd: mark PM functions as __maybe_unused
authorArnd Bergmann <arnd@arndb.de>
Mon, 20 Aug 2018 09:35:37 +0000 (11:35 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 14 Sep 2018 13:36:20 +0000 (15:36 +0200)
commit2e6ae11dd0d1c37f44cec51a58fb2092e55ed0f5
tree018c338dbbdc55083aa8a0e089685ad3aeb48963
parentbfb8e83847931ac854810dfa37f7cbd56bcc2f1f
slimbus: ngd: mark PM functions as __maybe_unused

qcom_slim_ngd_runtime_suspend is protected by an #ifdef,
qcom_slim_ngd_runtime_idle is now, which causes a build time warning:

drivers/slimbus/qcom-ngd-ctrl.c:1470:12: error: 'qcom_slim_ngd_runtime_idle' defined but not used [-Werror=unused-function]

Marking both as __maybe_unused lets us get rid of the warning
as well as the #ifdef.

Fixes: 917809e2280b ("slimbus: ngd: Add qcom SLIMBus NGD driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/slimbus/qcom-ngd-ctrl.c