summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/storage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/storage.c b/firmware/storage.c
index 69f28d94a8..0f78712784 100644
--- a/firmware/storage.c
+++ b/firmware/storage.c
@@ -588,7 +588,7 @@ bool storage_removable(int drive)
588 { 588 {
589#if (CONFIG_STORAGE & STORAGE_ATA) 589#if (CONFIG_STORAGE & STORAGE_ATA)
590 case STORAGE_ATA: 590 case STORAGE_ATA:
591 return ata_removable(ldrive); 591 return false;
592#endif 592#endif
593 593
594#if (CONFIG_STORAGE & STORAGE_MMC) 594#if (CONFIG_STORAGE & STORAGE_MMC)
@@ -625,7 +625,7 @@ bool storage_present(int drive)
625 { 625 {
626#if (CONFIG_STORAGE & STORAGE_ATA) 626#if (CONFIG_STORAGE & STORAGE_ATA)
627 case STORAGE_ATA: 627 case STORAGE_ATA:
628 return ata_present(ldrive); 628 return true;
629#endif 629#endif
630 630
631#if (CONFIG_STORAGE & STORAGE_MMC) 631#if (CONFIG_STORAGE & STORAGE_MMC)