From a56fad6ca8f70169e020d0b76963b1adc32c52f8 Mon Sep 17 00:00:00 2001 From: Reka Norman Date: Thu, 14 Sep 2023 14:29:01 +1000 Subject: [PATCH] soc/intel/jasperlake: Add ACPI names for missing USB3 ports BUG=b:264960828 TEST=On dibbi, ACPI tables contain entries for USB 3.4 and 3.5 Change-Id: If3266d356a2deaf42aa0943f85593416d80637ad Signed-off-by: Reka Norman Reviewed-on: https://review.coreboot.org/c/coreboot/+/77866 Tested-by: build bot (Jenkins) Reviewed-by: Sam McNally Reviewed-by: Eric Lai --- src/soc/intel/jasperlake/chip.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/soc/intel/jasperlake/chip.c b/src/soc/intel/jasperlake/chip.c index 8cf982a5e3..e51a601811 100644 --- a/src/soc/intel/jasperlake/chip.c +++ b/src/soc/intel/jasperlake/chip.c @@ -55,6 +55,8 @@ const char *soc_acpi_name(const struct device *dev) case 1: return "SS02"; case 2: return "SS03"; case 3: return "SS04"; + case 4: return "SS05"; + case 5: return "SS06"; } break; }