diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-10-16 20:12:31 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2024-10-21 01:14:13 +0000 |
commit | a820b441e404552bc29e21ae1941dfb22503f28d (patch) | |
tree | 21ee33cff0d549dbde4aff62681c50b53ee0928b /src | |
parent | 5e0cd7478f3bf32709b02f1195e74e04b3f88cdd (diff) |
drivers/spi/spi_flash_internal: add missing types.h include
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I7c5477bbc248a21e21f3a640bdb81304a1bce38c
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84788
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src')
-rw-r--r-- | src/drivers/spi/spi_flash_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/spi/spi_flash_internal.h b/src/drivers/spi/spi_flash_internal.h index 3aea9140e4..131c32bec8 100644 --- a/src/drivers/spi/spi_flash_internal.h +++ b/src/drivers/spi/spi_flash_internal.h @@ -7,6 +7,8 @@ #ifndef SPI_FLASH_INTERNAL_H #define SPI_FLASH_INTERNAL_H +#include <types.h> + /* Common commands */ #define CMD_READ_ID 0x9f |