diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2022-01-04 19:11:59 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-01-10 23:28:32 +0000 |
commit | ef6139ff0c3dc5b3961d32ad57f1a7c4ce67622c (patch) | |
tree | 35d849137a5d6e98605a40a69bbcce84c99fa875 /src | |
parent | ddaf2d0d182c117a5260e0a35e1fc68684ca67fd (diff) |
superio/smsc/sch5545/superio.c: Include `stdint.h` and `bsd/helpers.h`
Change-Id: I1b7778b039f57bee5bed4e6e0de562ca052eca39
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60768
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/superio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/superio/smsc/sch5545/superio.c b/src/superio/smsc/sch5545/superio.c index 7952eb85a7..8165fe06bd 100644 --- a/src/superio/smsc/sch5545/superio.c +++ b/src/superio/smsc/sch5545/superio.c @@ -1,11 +1,13 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <arch/io.h> +#include <commonlib/bsd/helpers.h> #include <device/device.h> #include <device/pnp.h> #include <superio/conf_mode.h> #include <console/console.h> #include <pc80/keyboard.h> +#include <stdint.h> #include "sch5545.h" |