summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksandr Mezin <mezin.alexander@gmail.com>2021-12-28 07:48:13 +0600
committerGuenter Roeck <linux@roeck-us.net>2021-12-27 18:22:04 -0800
commitf103b2e5a6197586effb0b9a1b72c30b5d65b0cd (patch)
treef52d26c732fcb02f4cbaa253a4479fcdfdaa7d29
parent565210c7812013aac7969320ac5b86fff7a74cc6 (diff)
downloadlinux-stable-f103b2e5a6197586effb0b9a1b72c30b5d65b0cd.tar.gz
linux-stable-f103b2e5a6197586effb0b9a1b72c30b5d65b0cd.tar.bz2
linux-stable-f103b2e5a6197586effb0b9a1b72c30b5d65b0cd.zip
hwmon: (nzxt-smart2) Fix "unused function" warning
Fix warning when building with CONFIG_PM=n (and CONFIG_WERROR=y): drivers/hwmon/nzxt-smart2.c:707:12: error: ‘nzxt_smart2_hid_reset_resume’ defined but not used [-Werror=unused-function] 707 | static int nzxt_smart2_hid_reset_resume(struct hid_device *hdev) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ Signed-off-by: Aleksandr Mezin <mezin.alexander@gmail.com> Link: https://lore.kernel.org/r/20211228014813.832491-1-mezin.alexander@gmail.com Signed-off-by: Guenter Roeck <linux@roeck-us.net>
-rw-r--r--drivers/hwmon/nzxt-smart2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/nzxt-smart2.c b/drivers/hwmon/nzxt-smart2.c
index 534d39b8908e..6e67da766969 100644
--- a/drivers/hwmon/nzxt-smart2.c
+++ b/drivers/hwmon/nzxt-smart2.c
@@ -704,7 +704,7 @@ static int nzxt_smart2_hid_raw_event(struct hid_device *hdev,
return 0;
}
-static int nzxt_smart2_hid_reset_resume(struct hid_device *hdev)
+static int __maybe_unused nzxt_smart2_hid_reset_resume(struct hid_device *hdev)
{
struct drvdata *drvdata = hid_get_drvdata(hdev);