diff options
| author | Tom Rini <trini@konsulko.com> | 2025-05-01 10:47:20 -0600 | 
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2025-05-13 11:30:09 -0600 | 
| commit | a367817c9a7f50b41a9f84e5a0818599e857739d (patch) | |
| tree | 8303d80c4ef022b5378222b664271a60cbec7f20 /fs | |
| parent | 720e0c0f1a14f034df3cc960e0924b74b3ba4fe2 (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>
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/fat/fat.c | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/fs/fat/fat.c b/fs/fat/fat.c index e2570e81676..89f2acbba1e 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> | 
