summaryrefslogtreecommitdiffstats
path: root/src/drivers/usb
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-07-10 10:41:14 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-07-14 16:11:27 +0000
commitad619a247373909ef3b2c082d4ef5db25166c8e1 (patch)
tree865b309c730e038c7292792d6fdf7f6cb39645ef /src/drivers/usb
parent854782330ccd3f92d1b09bd006ddf127ba188cba (diff)
downloadcoreboot-ad619a247373909ef3b2c082d4ef5db25166c8e1.tar.gz
coreboot-ad619a247373909ef3b2c082d4ef5db25166c8e1.tar.bz2
coreboot-ad619a247373909ef3b2c082d4ef5db25166c8e1.zip
src/drivers/usb/ehci_debug.c: Add missing include
Replace unused <stddef.h> with missing <stdint.h>. This is needed for 'u64'. Change-Id: Ie99c27bd6a7d982bba9a93342f3e3b83a1c09e8d Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43341 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/drivers/usb')
-rw-r--r--src/drivers/usb/ehci_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/usb/ehci_debug.c b/src/drivers/usb/ehci_debug.c
index e5841d7da0d7..07d87ae6c5dc 100644
--- a/src/drivers/usb/ehci_debug.c
+++ b/src/drivers/usb/ehci_debug.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
-#include <stddef.h>
+#include <stdint.h>
#include <console/console.h>
#include <console/usb.h>
#include <arch/io.h>