summaryrefslogtreecommitdiff
path: root/firmware/common/disk.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common/disk.c')
-rw-r--r--firmware/common/disk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/common/disk.c b/firmware/common/disk.c
index 653f17e946..27b79755e7 100644
--- a/firmware/common/disk.c
+++ b/firmware/common/disk.c
@@ -68,7 +68,7 @@ struct partinfo* disk_init(IF_MV_NONVOID(int drive))
68#endif 68#endif
69 69
70 ata_read_sectors(IF_MV2(drive,) 0,1, &sector); 70 ata_read_sectors(IF_MV2(drive,) 0,1, &sector);
71#ifndef CREATIVE_ZVM 71#ifndef CREATIVE_ZVx
72 /* check that the boot sector is initialized */ 72 /* check that the boot sector is initialized */
73 if ( (sector[510] != 0x55) || 73 if ( (sector[510] != 0x55) ||
74 (sector[511] != 0xaa)) { 74 (sector[511] != 0xaa)) {
@@ -187,7 +187,7 @@ int disk_mount(int drive)
187 { 187 {
188 return 0; 188 return 0;
189 } 189 }
190#if defined(TOSHIBA_GIGABEAT_S) ||defined(CREATIVE_ZVM) 190#if defined(TOSHIBA_GIGABEAT_S) || defined(CREATIVE_ZVx)
191 int i = 1; /* For the Gigabeat S, we mount the second partition */ 191 int i = 1; /* For the Gigabeat S, we mount the second partition */
192#else 192#else
193 int i = 0; 193 int i = 0;