Skip to content

Commit 3061dbe

Browse files
committed
Rename "hdd" to "ata"
1 parent 5d64b0e commit 3061dbe

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

iop/dev9/atad/src/ps2atad.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ int _start(int argc, char *argv[])
355355
for (i = 0; i < NUM_DEVICES; ++i) {
356356
g_ata_bd[i].priv = (void *)&atad_devinfo[i];
357357
g_ata_bd[i].name = "ata";
358-
g_ata_bd[i].path = "hdd";
358+
g_ata_bd[i].path = "ata";
359359
g_ata_bd[i].devNr = i;
360360
g_ata_bd[i].parNr = 0;
361361
g_ata_bd[i].parId = 0x00;

iop/fs/bdm/include/bdm.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ struct block_device
4040
void (*flush)(struct block_device *bd);
4141
int (*stop)(struct block_device *bd);
4242

43-
// Desired iomanX path prefix for this device type (e.g. "usb", "hdd").
44-
// When set, the fatfs driver exposes the device under this prefix (e.g. usb0:, hdd0:).
43+
// Desired iomanX path prefix for this device type (e.g. "usb", "ata").
44+
// When set, the fatfs driver exposes the device under this prefix (e.g. usb0:, ata0:).
4545
// Partition drivers should copy this from the parent block device.
4646
// NULL means the device is only accessible via the legacy "mass:" prefix.
4747
char *path;

0 commit comments

Comments
 (0)