summaryrefslogtreecommitdiff
path: root/firmware/include
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include')
-rw-r--r--firmware/include/dir_uncached.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/include/dir_uncached.h b/firmware/include/dir_uncached.h
index c2c7d67505..19bed9af5d 100644
--- a/firmware/include/dir_uncached.h
+++ b/firmware/include/dir_uncached.h
@@ -57,9 +57,9 @@ struct dirent_uncached {
57#ifndef DIR_DEFINED 57#ifndef DIR_DEFINED
58typedef struct { 58typedef struct {
59#if (CONFIG_PLATFORM & PLATFORM_NATIVE) 59#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
60 struct fat_dir fatdir CACHEALIGN_ATTR;
60 bool busy; 61 bool busy;
61 long startcluster; 62 long startcluster;
62 struct fat_dir fatdir;
63 struct dirent_uncached theent; 63 struct dirent_uncached theent;
64#ifdef HAVE_MULTIVOLUME 64#ifdef HAVE_MULTIVOLUME
65 int volumecounter; /* running counter for faked volume entries */ 65 int volumecounter; /* running counter for faked volume entries */
@@ -69,7 +69,7 @@ typedef struct {
69 void *dir; /* actually a DIR* dir */ 69 void *dir; /* actually a DIR* dir */
70 char *name; 70 char *name;
71#endif 71#endif
72} DIR_UNCACHED; 72} DIR_UNCACHED CACHEALIGN_ATTR;
73#endif 73#endif
74 74
75 75