soc/amd/common/block/apob/apob_cache: include types.h

The bool type is used although stdbool.h isn't included. Include types.h
which will include both stdint.h and stdbool.h

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I5213ddae3ceb36e0b2e09f8ef3f7f414ebdf187f
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73316
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Felix Held 2023-02-27 20:18:26 +01:00
parent f0400e7d3f
commit 6457ba17b2
1 changed files with 1 additions and 1 deletions

View File

@ -12,10 +12,10 @@
#include <fmap_config.h> #include <fmap_config.h>
#include <security/vboot/vboot_common.h> #include <security/vboot/vboot_common.h>
#include <spi_flash.h> #include <spi_flash.h>
#include <stdint.h>
#include <string.h> #include <string.h>
#include <thread.h> #include <thread.h>
#include <timestamp.h> #include <timestamp.h>
#include <types.h>
#include <xxhash.h> #include <xxhash.h>
#define DEFAULT_MRC_CACHE "RW_MRC_CACHE" #define DEFAULT_MRC_CACHE "RW_MRC_CACHE"