summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-05-01 10:47:19 -0600
committerTom Rini <trini@konsulko.com>2025-05-13 11:30:08 -0600
commit720e0c0f1a14f034df3cc960e0924b74b3ba4fe2 (patch)
treeba4b79fb2438862e0eaa0e49a8ef5a0bad600da8
parentcfa00751b0516a3c8f4f432962a754fae4d551de (diff)
ext4fs.c: Add missing include
This file references rtc functions and implicitly includes <rtc.h> today. Add this explicitly. Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--fs/ext4/ext4fs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext4/ext4fs.c b/fs/ext4/ext4fs.c
index 1727da2dc6d..bd058a09614 100644
--- a/fs/ext4/ext4fs.c
+++ b/fs/ext4/ext4fs.c
@@ -27,6 +27,7 @@
#include <ext4fs.h>
#include <malloc.h>
#include <part.h>
+#include <rtc.h>
#include <u-boot/uuid.h>
#include "ext4_common.h"