summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-05-01 10:47:21 -0600
committerTom Rini <trini@konsulko.com>2025-05-13 11:30:09 -0600
commit4c26de2eea6bcf5f27b13da0372d27d767cd38e3 (patch)
tree2f78d08fcf72f89c38feef5219c60b190d50602e
parenta367817c9a7f50b41a9f84e5a0818599e857739d (diff)
fs.h: Switch to using rtc_def.h
This file only needs the definition of 'struct rtc_time' and that is found in <rtc_def.h>. Use that instead of pulling in rtc.h to pull in rtc_def.h as rtc.h includes many other include files. Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--include/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fs.h b/include/fs.h
index 731aaa02637..bec02117737 100644
--- a/include/fs.h
+++ b/include/fs.h
@@ -5,7 +5,7 @@
#ifndef _FS_H
#define _FS_H
-#include <rtc.h>
+#include <rtc_def.h>
struct cmd_tbl;