From 142dcf8f006ffc94dc8fb83c6340595072512154 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Tue, 28 Jul 2026 21:01:46 -0700 Subject: [PATCH] [NOT-FOR-UPSTREAM] platform/x86: ayn-ec: Report RGB LED under the Legion Go name This is deliberately an OGC-carried patch and must not be sent upstream. Squatting on another device's LED name is not acceptable in mainline; the real fix belongs in the Steam client, which should match the "*:rgb:joystick_rings" suffix rather than a per-device prefix. --- drivers/platform/x86/ayn-ec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/platform/x86/ayn-ec.c b/drivers/platform/x86/ayn-ec.c index 25f748d7db18e..12c8605d3a8ec 100644 --- a/drivers/platform/x86/ayn-ec.c +++ b/drivers/platform/x86/ayn-ec.c @@ -773,7 +773,7 @@ struct mc_subled ayn_led_mc_subled_info[] = { struct led_classdev_mc ayn_led_mc = { .led_cdev = { - .name = "ayn:rgb:joystick_rings", + .name = "go:rgb:joystick_rings", .brightness = 0, .max_brightness = 255, .brightness_set = ayn_led_mc_brightness_set,