Fix FAT driver issues (FAT32 while being under 32MiB), liballoc alignment so SSE doesnt break
This commit is contained in:
13
libfat/_fatctx.h
Normal file
13
libfat/_fatctx.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef _KERNEL_FS_FATFS_CTX_H
|
||||
#define _KERNEL_FS_FATFS_CTX_H
|
||||
|
||||
struct fatfs_ctx {
|
||||
FL_FILE _files[FATFS_MAX_OPEN_FILES];
|
||||
int _filelib_init;
|
||||
int _filelib_valid;
|
||||
struct fatfs _fs;
|
||||
struct fat_list _open_file_list;
|
||||
struct fat_list _free_file_list;
|
||||
};
|
||||
|
||||
#endif // _KERNEL_FS_FATFS_CTX_H
|
||||
Reference in New Issue
Block a user