Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Kate Hsuan and committed by
Hans de Goede
0b57e2e4 492b1194

+3 -3
+3 -3
drivers/platform/x86/x86-android-tablets/other.c
··· 609 609 static const struct property_entry ktd2026_rgb_led_props[] = { 610 610 PROPERTY_ENTRY_U32("reg", 0), 611 611 PROPERTY_ENTRY_U32("color", LED_COLOR_ID_RGB), 612 - PROPERTY_ENTRY_STRING("function", "indicator"), 613 - PROPERTY_ENTRY_STRING("linux,default-trigger", "bq27520-0-charging"), 612 + PROPERTY_ENTRY_STRING("label", "mipad2:rgb:indicator"), 613 + PROPERTY_ENTRY_STRING("linux,default-trigger", "bq27520-0-charging-orange-full-green"), 614 614 { } 615 615 }; 616 616 ··· 656 656 static const struct software_node *ktd2026_node_group[] = { 657 657 &ktd2026_node, 658 658 &ktd2026_rgb_led_node, 659 + &ktd2026_red_led_node, 659 660 &ktd2026_green_led_node, 660 661 &ktd2026_blue_led_node, 661 - &ktd2026_red_led_node, 662 662 NULL 663 663 }; 664 664