diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-05-15 17:07:45 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-05-16 15:47:15 +0000 |
commit | e189043aece3a43dc47be57bf5768077ddeb6066 (patch) | |
tree | d5c10f9eefbaf988850d8f08675e435a97f84a8e /src/mainboard | |
parent | c61b35b6969a89faf0c580767cb5d5ade35ae666 (diff) |
mb/amd/birman/update_devicetree_phoenix_opensil: use common header file
Instead of including stub/mpio/chip.h, include chip/mpio/chip.h that
will include the correct implementation to be able to use the same file
with both the openSIL stub and the actual openSIL implementation glue
code.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Iaae26a0dfe0ba96842e72582c06f1b0b3f29871c
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82472
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/amd/birman/update_devicetree_phoenix_opensil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/amd/birman/update_devicetree_phoenix_opensil.c b/src/mainboard/amd/birman/update_devicetree_phoenix_opensil.c index 6e44302ec3..8f7803f57c 100644 --- a/src/mainboard/amd/birman/update_devicetree_phoenix_opensil.c +++ b/src/mainboard/amd/birman/update_devicetree_phoenix_opensil.c @@ -2,7 +2,7 @@ #include <device/device.h> #include <soc/soc_util.h> -#include <vendorcode/amd/opensil/stub/mpio/chip.h> +#include <vendorcode/amd/opensil/chip/mpio/chip.h> #include "update_devicetree.h" static void mainboard_update_mpio(void) |