diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-10-22 22:16:24 +0200 |
---|---|---|
committer | Michael Niewöhner <foss@mniewoehner.de> | 2022-10-24 20:04:15 +0000 |
commit | 193e86b814d5fccffcde9870fc245ace9b12d702 (patch) | |
tree | a36e20ca48a4e2a32cbaf8236d61282e1c55408a /src/mainboard | |
parent | 2a09a84f1577cf7ba22929bc9c9a40bff93208c3 (diff) |
mb/clevo/tgl-u: Avoid indirect includes
Change-Id: I51ab987420e592ac2f841c2d7761c0adcc43124e
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68701
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/clevo/tgl-u/variants/l140mu/hda_verb.c | 1 | ||||
-rw-r--r-- | src/mainboard/clevo/tgl-u/variants/l140mu/romstage.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/clevo/tgl-u/variants/l140mu/hda_verb.c b/src/mainboard/clevo/tgl-u/variants/l140mu/hda_verb.c index ebe499d086..d8739a2604 100644 --- a/src/mainboard/clevo/tgl-u/variants/l140mu/hda_verb.c +++ b/src/mainboard/clevo/tgl-u/variants/l140mu/hda_verb.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <device/azalia_device.h> +#include <stdint.h> const u32 cim_verb_data[] = { /* Realtek ALC293 */ diff --git a/src/mainboard/clevo/tgl-u/variants/l140mu/romstage.c b/src/mainboard/clevo/tgl-u/variants/l140mu/romstage.c index 14e81fe2fe..a1cfb03749 100644 --- a/src/mainboard/clevo/tgl-u/variants/l140mu/romstage.c +++ b/src/mainboard/clevo/tgl-u/variants/l140mu/romstage.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <soc/meminit.h> +#include <stdbool.h> #include <variant/romstage.h> void variant_configure_fspm(FSPM_UPD *memupd) |