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)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
case STORAGE_ATA:
- return ata_removable(ldrive);
+ return false;
#endif
#if (CONFIG_STORAGE & STORAGE_MMC)
@@ -625,7 +625,7 @@ bool storage_present(int drive)
{
#if (CONFIG_STORAGE & STORAGE_ATA)
case STORAGE_ATA:
- return ata_present(ldrive);
+ return true;
#endif
#if (CONFIG_STORAGE & STORAGE_MMC)