diff options
author | Reka Norman <rekanorman@chromium.org> | 2023-09-14 14:29:01 +1000 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-09-15 13:41:42 +0000 |
commit | a56fad6ca8f70169e020d0b76963b1adc32c52f8 (patch) | |
tree | 559c4685879c5d9cfc3cb2a47a7923d6b689a0ec /src | |
parent | b4f9c8d86ac2aa9664a1d8c7cda1d28870052d22 (diff) |
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 <rekanorman@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77866
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sam McNally <sammc@google.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/jasperlake/chip.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; } |