commit | 0e3b95b0fe380ebf4df7d4cd63a258de4a4e4be4 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Thu May 01 10:47:20 2025 -0600 |
committer | Tom Rini <trini@konsulko.com> | Tue May 13 11:30:09 2025 -0600 |
tree | 8303d80c4ef022b5378222b664271a60cbec7f20 | |
parent | df1ddaf9d58865d6c9b580b9e2d0b9b5cbfa2053 [diff] |
fat.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/fat/fat.c b/fs/fat/fat.c index e2570e8..89f2acb 100644 --- a/fs/fat/fat.c +++ b/fs/fat/fat.c
@@ -21,6 +21,7 @@ #include <part.h> #include <malloc.h> #include <memalign.h> +#include <rtc.h> #include <asm/cache.h> #include <linux/compiler.h> #include <linux/ctype.h>