summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/ramdisk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/ramdisk.c b/firmware/drivers/ramdisk.c
index c1f8824..44235c4 100644
--- a/firmware/drivers/ramdisk.c
+++ b/firmware/drivers/ramdisk.c
@@ -27,9 +27,9 @@
#define SECTOR_SIZE 512
#define NUM_SECTORS 16384
-unsigned char ramdisk[SECTOR_SIZE * NUM_SECTORS];
+static unsigned char ramdisk[SECTOR_SIZE * NUM_SECTORS];
-long last_disk_activity = -1;
+static long last_disk_activity = -1;
int ramdisk_read_sectors(IF_MD(int drive,)
unsigned long start,