commit | df1ddaf9d58865d6c9b580b9e2d0b9b5cbfa2053 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Thu May 01 10:47:19 2025 -0600 |
committer | Tom Rini <trini@konsulko.com> | Tue May 13 11:30:08 2025 -0600 |
tree | ba4b79fb2438862e0eaa0e49a8ef5a0bad600da8 | |
parent | 489d774765a612d8078d1cad2f1bddd78adb11f3 [diff] [blame] |
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>
diff --git a/fs/ext4/ext4fs.c b/fs/ext4/ext4fs.c index 1727da2..bd058a0 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"