summaryrefslogtreecommitdiffhomepage
path: root/src/coreboot-partition-map.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreboot-partition-map.c')
-rw-r--r--src/coreboot-partition-map.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/coreboot-partition-map.c b/src/coreboot-partition-map.c
index 40c3ff0..69bcddd 100644
--- a/src/coreboot-partition-map.c
+++ b/src/coreboot-partition-map.c
@@ -9,8 +9,8 @@
// include this for documentation.
-#define MP_FILESYSTEM_COUNT 4
-#define MP_FILESYSTEM_LIST \
+#define CB_FILESYSTEM_COUNT 4
+#define CB_FILESYSTEM_LIST \
{ \
"NeFS", "HeFS", "FAT32", "ext4" \
}
@@ -23,9 +23,9 @@ boolean cb_filesystem_exists(caddr_t fs, size_t len)
*fs == 0)
return no;
- char* fs_list[] = MP_FILESYSTEM_LIST;
+ char* fs_list[] = CB_FILESYSTEM_LIST;
- for (size_t fs_index = 0; fs_index < MP_FILESYSTEM_COUNT; fs_index++)
+ for (size_t fs_index = 0; fs_index < CB_FILESYSTEM_COUNT; fs_index++)
{
if (strncmp(fs_list[fs_index], fs, strlen(fs_list[fs_index])) == 0)
{