summaryrefslogtreecommitdiff
path: root/firmware/drivers/fat.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/fat.c')
-rw-r--r--firmware/drivers/fat.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c
index 91019faf0e..cb1a3c1a8f 100644
--- a/firmware/drivers/fat.c
+++ b/firmware/drivers/fat.c
@@ -155,7 +155,7 @@ struct bpb
155 int startsector; 155 int startsector;
156}; 156};
157 157
158struct bpb fat_bpb; 158static struct bpb fat_bpb;
159 159
160static int first_sector_of_cluster(int cluster); 160static int first_sector_of_cluster(int cluster);
161static int bpb_is_sane(void); 161static int bpb_is_sane(void);
@@ -167,9 +167,6 @@ static unsigned int getcurrdostime(unsigned short *dosdate,
167static int create_dos_name(unsigned char *name, unsigned char *newname); 167static int create_dos_name(unsigned char *name, unsigned char *newname);
168#endif 168#endif
169 169
170/* global FAT info struct */
171struct bpb fat_bpb;
172
173#define FAT_CACHE_SIZE 0x20 170#define FAT_CACHE_SIZE 0x20
174#define FAT_CACHE_MASK (FAT_CACHE_SIZE-1) 171#define FAT_CACHE_MASK (FAT_CACHE_SIZE-1)
175 172