aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/picasso/chip.c
diff options
context:
space:
mode:
authorMarshall Dawson <marshalldawson3rd@gmail.com>2019-06-30 18:26:35 -0500
committerMartin Roth <martinroth@google.com>2019-07-03 21:46:18 +0000
commitfa4a74b098731bf3e0979c20a65fa883bf4c57f3 (patch)
treea3d7fafa4213e7652f7c8a1fdcd6e4c87d2a0b6c /src/soc/amd/picasso/chip.c
parent19ea0169108dc2eff743ae640a8108eb5852612d (diff)
soc/amd/picasso: Add xhci1 and remove ehci
Change-Id: I9d0098082c224bbf5ab2b4f0f41eb8b5b729eec7 Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33987 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/soc/amd/picasso/chip.c')
-rw-r--r--src/soc/amd/picasso/chip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/amd/picasso/chip.c b/src/soc/amd/picasso/chip.c
index 19921e1c90..dad9d22e7e 100644
--- a/src/soc/amd/picasso/chip.c
+++ b/src/soc/amd/picasso/chip.c
@@ -96,8 +96,6 @@ const char *soc_acpi_name(const struct device *dev)
return "PBR8";
case HDA1_DEVFN:
return "AZHD";
- case EHCI1_DEVFN:
- return "EHC0";
case LPC_DEVFN:
return "LPCB";
case SATA_DEVFN:
@@ -106,8 +104,10 @@ const char *soc_acpi_name(const struct device *dev)
return "SDCN";
case SMBUS_DEVFN:
return "SBUS";
- case XHCI_DEVFN:
+ case XHCI0_DEVFN:
return "XHC0";
+ case XHCI1_DEVFN:
+ return "XHC1";
default:
return NULL;
}