Re: [PATCH 4/6] platform/x86/tuxedo: Fix keyboard LED map ordering
From: Aaron Erhardt
Date: Tue Jul 28 2026 - 10:56:00 EST
This patch was sent directly to stable by accident, separate from the rest of the patch series.
Please ignore it. It will come with v2 or a later revisions of the series through master.
Sorry for the inconvenience.
Best regards
Aaron
Am 28.07.26 um 13:59 schrieb Aaron Erhardt:
> The LED mappings in sirius_16_[iso|ansii]_kbl_map did contain a
> flipped line that caused LEDs to turn on in the wrong order when
> counting up the Lamp ID.
>
> Cc: stable@xxxxxxxxxxxxxxx
> Signed-off-by: Aaron Erhardt <aer@xxxxxxxxxxxxxxxxxxx>
> ---
> drivers/platform/x86/tuxedo/nb04/wmi_ab.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/platform/x86/tuxedo/nb04/wmi_ab.c b/drivers/platform/x86/tuxedo/nb04/wmi_ab.c
> index 8f1ffca0430d..2b985b030197 100644
> --- a/drivers/platform/x86/tuxedo/nb04/wmi_ab.c
> +++ b/drivers/platform/x86/tuxedo/nb04/wmi_ab.c
> @@ -232,8 +232,8 @@ static const struct tux_kbl_map_entry_t sirius_16_ansii_kbl_map[] = {
> { 0x2e, { 246000, 67500, 5250 } },
> { 0x2a, { 269500, 67500, 5250 } },
> { 0x53, { 294500, 67500, 5250 } },
> - { 0x55, { 311200, 67500, 5250 } },
> - { 0x54, { 327900, 67500, 5250 } },
> + { 0x54, { 311200, 67500, 5250 } },
> + { 0x55, { 327900, 67500, 5250 } },
> { 0x56, { 344600, 67500, 5250 } },
> { 0x2b, { 31000, 85500, 5500 } },
> { 0x14, { 51500, 85500, 5500 } },
> @@ -337,8 +337,8 @@ static const struct tux_kbl_map_entry_t sirius_16_iso_kbl_map[] = {
> { 0x2e, { 246000, 67500, 5250 } },
> { 0x2a, { 269500, 67500, 5250 } },
> { 0x53, { 294500, 67500, 5250 } },
> - { 0x55, { 311200, 67500, 5250 } },
> - { 0x54, { 327900, 67500, 5250 } },
> + { 0x54, { 311200, 67500, 5250 } },
> + { 0x55, { 327900, 67500, 5250 } },
> { 0x56, { 344600, 67500, 5250 } },
> { 0x2b, { 31000, 85500, 5500 } },
> { 0x14, { 51500, 85500, 5500 } },