summaryrefslogtreecommitdiff
path: root/firmware/drivers/ramdisk.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/ramdisk.c')
-rw-r--r--firmware/drivers/ramdisk.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/drivers/ramdisk.c b/firmware/drivers/ramdisk.c
index cecc943352..5798de252e 100644
--- a/firmware/drivers/ramdisk.c
+++ b/firmware/drivers/ramdisk.c
@@ -22,9 +22,10 @@
22#include <stdbool.h> 22#include <stdbool.h>
23#include <string.h> 23#include <string.h>
24 24
25#include "config.h"
26#include "fs_defines.h"
25#include "storage.h" 27#include "storage.h"
26 28
27#define SECTOR_SIZE 512
28#define NUM_SECTORS 16384 29#define NUM_SECTORS 16384
29 30
30static unsigned char ramdisk[SECTOR_SIZE * NUM_SECTORS]; 31static unsigned char ramdisk[SECTOR_SIZE * NUM_SECTORS];