Attention is currently required from: Jason Glenesk, Marshall Dawson, Aaron Durbin. Hello Aaron Durbin,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/60200
to review the following change.
Change subject: mb/amd/bilby,mandolin: use full path of SoC's chip.h ......................................................................
mb/amd/bilby,mandolin: use full path of SoC's chip.h
This is taken from CB:41355
Signed-off-by: Aaron Durbin adurbin@chromium.org Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: Iba1948ae2332788b7e0ec9b4e3cea35c6608b152 --- M src/mainboard/amd/bilby/mainboard.c M src/mainboard/amd/mandolin/mainboard.c 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/00/60200/1
diff --git a/src/mainboard/amd/bilby/mainboard.c b/src/mainboard/amd/bilby/mainboard.c index bc91630..009d3c3 100644 --- a/src/mainboard/amd/bilby/mainboard.c +++ b/src/mainboard/amd/bilby/mainboard.c @@ -12,7 +12,7 @@ #include <soc/platform_descriptors.h> #include <types.h> #include <commonlib/helpers.h> -#include <chip.h> +#include <soc/amd/stoneyridge/chip.h> #include "gpio.h" #include "mainboard.h"
diff --git a/src/mainboard/amd/mandolin/mainboard.c b/src/mainboard/amd/mandolin/mainboard.c index a66db78..3f9a3c9 100644 --- a/src/mainboard/amd/mandolin/mainboard.c +++ b/src/mainboard/amd/mandolin/mainboard.c @@ -10,7 +10,7 @@ #include <soc/pci_devs.h> #include <types.h> #include <commonlib/helpers.h> -#include <chip.h> +#include <soc/amd/stoneyridge/chip.h> #include "gpio.h"
/* TODO: recheck IRQ tables */