summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 91019fa..cb1a3c1 100644
--- a/firmware/drivers/fat.c
+++ b/firmware/drivers/fat.c
@@ -155,7 +155,7 @@ struct bpb
int startsector;
};
-struct bpb fat_bpb;
+static struct bpb fat_bpb;
static int first_sector_of_cluster(int cluster);
static int bpb_is_sane(void);
@@ -167,9 +167,6 @@ static unsigned int getcurrdostime(unsigned short *dosdate,
static int create_dos_name(unsigned char *name, unsigned char *newname);
#endif
-/* global FAT info struct */
-struct bpb fat_bpb;
-
#define FAT_CACHE_SIZE 0x20
#define FAT_CACHE_MASK (FAT_CACHE_SIZE-1)