Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/45429 )
Change subject: soc/amd/picasso/data_fabric: include types.h ......................................................................
soc/amd/picasso/data_fabric: include types.h
data_fabric.c uses types from stdint.h, but doesn't include stdint.h directly, so replace the inclusion of stdbool.h with types.h which includes both stdbool.h and stdint.h.
Change-Id: I4c1ea444e50218cf19fc8fff499929336265bd03 Signed-off-by: Felix Held felix-coreboot@felixheld.de --- M src/soc/amd/picasso/data_fabric.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/45429/1
diff --git a/src/soc/amd/picasso/data_fabric.c b/src/soc/amd/picasso/data_fabric.c index 23cb94c..daeca99 100644 --- a/src/soc/amd/picasso/data_fabric.c +++ b/src/soc/amd/picasso/data_fabric.c @@ -10,7 +10,7 @@ #include <soc/data_fabric.h> #include <soc/iomap.h> #include <soc/pci_devs.h> -#include <stdbool.h> +#include <types.h>
static void disable_mmio_reg(int reg) {