diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2021-02-12 08:21:07 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-02-13 22:06:28 +0000 |
commit | 844775059d8cb456dec988e6378f3a73ea730001 (patch) | |
tree | 1c66f4ee0ce8fa1ec678e28da6a6c4a7587bfe74 /src | |
parent | f5552cef97c90ace253dc2fa095d754b58979285 (diff) |
superio/smsc/sch5545: Add missing <types.h>
Add needed but missing <types.h>.
Change-Id: I16c6a86e8c8863a8e16a63a379484c2b47d5185e
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50579
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src')
-rw-r--r-- | src/superio/smsc/sch5545/sch5545_emi.c | 1 | ||||
-rw-r--r-- | src/superio/smsc/sch5545/sch5545_emi.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/superio/smsc/sch5545/sch5545_emi.c b/src/superio/smsc/sch5545/sch5545_emi.c index 367148aef2..66a9d42364 100644 --- a/src/superio/smsc/sch5545/sch5545_emi.c +++ b/src/superio/smsc/sch5545/sch5545_emi.c @@ -5,6 +5,7 @@ #include <device/pnp.h> #include <device/pnp_ops.h> #include <superio/conf_mode.h> +#include <types.h> #include "sch5545.h" #include "sch5545_emi.h" diff --git a/src/superio/smsc/sch5545/sch5545_emi.h b/src/superio/smsc/sch5545/sch5545_emi.h index 2bf3a769a5..2d399829b5 100644 --- a/src/superio/smsc/sch5545/sch5545_emi.h +++ b/src/superio/smsc/sch5545/sch5545_emi.h @@ -4,7 +4,7 @@ #define SUPERIO_SCH_5545_EMI_H #include <stdlib.h> -#include <stdint.h> +#include <types.h> /* Embedded Memory Interface registers */ #define SCH5545_EMI_HOST_TO_EC_MAILBOX 0x0 |