[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240624001450.969059-1-luke@ljones.dev>
Date: Mon, 24 Jun 2024 12:14:50 +1200
From: "Luke D. Jones" <luke@...nes.dev>
To: linux-input@...r.kernel.org
Cc: linux-kernel@...r.kernel.org,
jikos@...nel.org,
bentiss@...nel.org,
"Luke D. Jones" <luke@...nes.dev>
Subject: [PATCH] Fixes: bda38f9a41 ("HID: asus: use hid for brightness control on keyboard")
- Fix missing braces around initializer
- Remove unused function declaration from asus-wmi.h
Signed-off-by: Luke D. Jones <luke@...nes.dev>
---
include/linux/platform_data/x86/asus-wmi.h | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/include/linux/platform_data/x86/asus-wmi.h b/include/linux/platform_data/x86/asus-wmi.h
index 96c780efa0d7..74b32e1d6735 100644
--- a/include/linux/platform_data/x86/asus-wmi.h
+++ b/include/linux/platform_data/x86/asus-wmi.h
@@ -162,15 +162,6 @@ static inline int asus_wmi_evaluate_method(u32 method_id, u32 arg0, u32 arg1,
#endif
/* To be used by both hid-asus and asus-wmi to determine which controls kbd_brightness */
-#if IS_ENABLED(CONFIG_ASUS_WMI)
-bool asus_use_hid_led(void);
-#else
-static inline bool asus_use_hid_led(void)
-{
- return true;
-}
-#endif
-
static const struct dmi_system_id asus_use_hid_led_dmi_ids[] = {
{
.matches = {
@@ -202,7 +193,7 @@ static const struct dmi_system_id asus_use_hid_led_dmi_ids[] = {
DMI_MATCH(DMI_BOARD_NAME, "RC71L"),
},
},
- NULL,
+ { },
};
#endif /* __PLATFORM_DATA_X86_ASUS_WMI_H */
--
2.45.2
Powered by blists - more mailing lists