summaryrefslogtreecommitdiff
path: root/disk/part.c
diff options
context:
space:
mode:
Diffstat (limited to 'disk/part.c')
-rw-r--r--disk/part.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/disk/part.c b/disk/part.c
index f8f2e0524d..ce072dcf92 100644
--- a/disk/part.c
+++ b/disk/part.c
@@ -277,14 +277,6 @@ void init_part(block_dev_desc_t *dev_desc)
}
#endif
-#ifdef CONFIG_MPT_PARTITION
- if (test_part_mpt(dev_desc) == 0) {
- printf("%s() %d: PART_TYPE_MPT\n", __func__, __LINE__);
- dev_desc->part_type = PART_TYPE_MPT;
- return;
- }
-#endif
-
#ifdef CONFIG_DOS_PARTITION
if (test_part_dos(dev_desc) == 0) {
printf("%s() %d: PART_TYPE_DOS\n", __func__, __LINE__);
@@ -293,6 +285,14 @@ void init_part(block_dev_desc_t *dev_desc)
}
#endif
+#ifdef CONFIG_MPT_PARTITION
+ if (test_part_mpt(dev_desc) == 0) {
+ printf("%s() %d: PART_TYPE_MPT\n", __func__, __LINE__);
+ dev_desc->part_type = PART_TYPE_MPT;
+ return;
+ }
+#endif
+
#ifdef CONFIG_AMIGA_PARTITION
if (test_part_amiga(dev_desc) == 0) {
dev_desc->part_type = PART_TYPE_AMIGA;