From 49f53bbb387f04143c351b3207d3c29cd344d1d0 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Mon, 23 Feb 2026 17:18:03 +0100 Subject: [PATCH] include/acpi/acpi_pld.h: Fix order of colour components The colour components are in RGB order in the structure returned by the ACPI `_PLD` method, so use the same order in the C struct as well. This has no impact since nobody currently specifies port colours with this. Change-Id: I11b486faaf73f5da37b973180f23e8b3f19f3f5e Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/91389 Reviewed-by: Paul Menzel Reviewed-by: Matt DeVillier Tested-by: build bot (Jenkins) --- src/include/acpi/acpi_pld.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/acpi/acpi_pld.h b/src/include/acpi/acpi_pld.h index 98d7f9ebcf..b1c2444992 100644 --- a/src/include/acpi/acpi_pld.h +++ b/src/include/acpi/acpi_pld.h @@ -98,8 +98,8 @@ struct acpi_pld { /* Color field can be explicitly ignored */ bool ignore_color; uint8_t color_red; - uint8_t color_blue; uint8_t color_green; + uint8_t color_blue; /* Port characteristics */ bool visible; /* Can be seen by the user */