hwmon: (nzxt-smart2) Fix "unused function" warning
authorAleksandr Mezin <mezin.alexander@gmail.com>
Tue, 28 Dec 2021 01:48:13 +0000 (07:48 +0600)
committerGuenter Roeck <linux@roeck-us.net>
Tue, 28 Dec 2021 02:22:04 +0000 (18:22 -0800)
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>
drivers/hwmon/nzxt-smart2.c

index 534d39b8908eaec48fed80accf768267704f9461..6e67da766969d5def99355791b0a583bbfbe71ab 100644 (file)
@@ -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);