diff options
Diffstat (limited to 'firmware/include')
| -rw-r--r-- | firmware/include/dir_uncached.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/include/dir_uncached.h b/firmware/include/dir_uncached.h index c2c7d67..19bed9a 100644 --- a/firmware/include/dir_uncached.h +++ b/firmware/include/dir_uncached.h @@ -57,9 +57,9 @@ struct dirent_uncached { #ifndef DIR_DEFINED typedef struct { #if (CONFIG_PLATFORM & PLATFORM_NATIVE) + struct fat_dir fatdir CACHEALIGN_ATTR; bool busy; long startcluster; - struct fat_dir fatdir; struct dirent_uncached theent; #ifdef HAVE_MULTIVOLUME int volumecounter; /* running counter for faked volume entries */ @@ -69,7 +69,7 @@ typedef struct { void *dir; /* actually a DIR* dir */ char *name; #endif -} DIR_UNCACHED; +} DIR_UNCACHED CACHEALIGN_ATTR; #endif |