aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/scaleway
diff options
context:
space:
mode:
authorFelix Held <felix.held@amd.corp-partner.google.com>2021-09-16 22:00:24 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-09-17 20:27:58 +0000
commit5f12b7b214cb9658fb9d04754fc7d2882b63b4af (patch)
treed6ee822890d70ccc6dcc1e562197e9967bf8051f /src/mainboard/scaleway
parent5340abcd2f0f7b8daa007f1059d5e3ce1997e9b4 (diff)
mb/scaleway/tagada/bmcinfo: replace stdbool.h include with types.h
Apart from the u8, u16 and u32 types, the bool type is used in this file so include types.h instead of stdint.h to have bool defined too. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I95f037deb0fe11b717586df655065bfbb33b0d23 Reviewed-on: https://review.coreboot.org/c/coreboot/+/57724 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/mainboard/scaleway')
-rw-r--r--src/mainboard/scaleway/tagada/bmcinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/scaleway/tagada/bmcinfo.c b/src/mainboard/scaleway/tagada/bmcinfo.c
index 099d37e337..e015837ded 100644
--- a/src/mainboard/scaleway/tagada/bmcinfo.c
+++ b/src/mainboard/scaleway/tagada/bmcinfo.c
@@ -1,8 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0-only */
-#include <stdint.h>
#include <console/console.h>
#include <console/uart.h>
+#include <types.h>
#include "bmcinfo.h"