summaryrefslogtreecommitdiffstats
path: root/drivers/platform/x86/x86-android-tablets/other.c
diff options
context:
space:
mode:
authorKate Hsuan <hpa@redhat.com>2024-05-04 18:41:05 +0200
committerHans de Goede <hdegoede@redhat.com>2024-05-14 11:43:40 +0200
commit0b57e2e43c4d257b60c93e9d86ac7a850e21253f (patch)
tree0a7701a965940ae5d71cd14e902a72668417dd76 /drivers/platform/x86/x86-android-tablets/other.c
parent492b1194b2bace8925f8a166680621248c7ec543 (diff)
downloadlinux-stable-0b57e2e43c4d257b60c93e9d86ac7a850e21253f.tar.gz
linux-stable-0b57e2e43c4d257b60c93e9d86ac7a850e21253f.tar.bz2
linux-stable-0b57e2e43c4d257b60c93e9d86ac7a850e21253f.zip
platform/x86: x86-android-tablets: Xiaomi pad2 RGB LED fwnode updates
Xiaomi pad2 RGB LED fwnode updates: 1. Set "label" instead "function" to change the LED classdev name from "rgb:indicator" to "mipad2:rgb:indicator" to match the usual triplet name format for LED classdevs. 2. Set the trigger to the new "bq27520-0-charging-orange-full-green" powersupply trigger type for multi-color LEDs. 3. Put the fwnode link for red before green in ktd2026_node_group[] so that multi_index becomes "red green blue". Signed-off-by: Kate Hsuan <hpa@redhat.com> Reviewed-by: Andy Shevchenko <andy@kernel.org> Co-developed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Link: https://lore.kernel.org/r/20240504164105.114017-8-hdegoede@redhat.com
Diffstat (limited to 'drivers/platform/x86/x86-android-tablets/other.c')
-rw-r--r--drivers/platform/x86/x86-android-tablets/other.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/platform/x86/x86-android-tablets/other.c b/drivers/platform/x86/x86-android-tablets/other.c
index 19f3100861d6..ff7b1d0abaa3 100644
--- a/drivers/platform/x86/x86-android-tablets/other.c
+++ b/drivers/platform/x86/x86-android-tablets/other.c
@@ -609,8 +609,8 @@ static const struct software_node ktd2026_node = {
static const struct property_entry ktd2026_rgb_led_props[] = {
PROPERTY_ENTRY_U32("reg", 0),
PROPERTY_ENTRY_U32("color", LED_COLOR_ID_RGB),
- PROPERTY_ENTRY_STRING("function", "indicator"),
- PROPERTY_ENTRY_STRING("linux,default-trigger", "bq27520-0-charging"),
+ PROPERTY_ENTRY_STRING("label", "mipad2:rgb:indicator"),
+ PROPERTY_ENTRY_STRING("linux,default-trigger", "bq27520-0-charging-orange-full-green"),
{ }
};
@@ -656,9 +656,9 @@ static const struct software_node ktd2026_red_led_node = {
static const struct software_node *ktd2026_node_group[] = {
&ktd2026_node,
&ktd2026_rgb_led_node,
+ &ktd2026_red_led_node,
&ktd2026_green_led_node,
&ktd2026_blue_led_node,
- &ktd2026_red_led_node,
NULL
};