Skip to content

Commit

Permalink
fix r50 series nvme enclosure maps (#14652)
Browse files Browse the repository at this point in the history
(cherry picked from commit bedc0c1)

Co-authored-by: caleb <[email protected]>
  • Loading branch information
bugclerk and yocalebo authored Oct 10, 2024
1 parent cab2fd4 commit 7d7b5ec
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def get_nvme_slot_info(model):
DISK_TOP_KEY: False,
DISK_REAR_KEY: True,
DISK_INTERNAL_KEY: False
} for i, j in zip(range(1, 4), range(25, 28))
} for i, j in zip(range(1, 4), range(49, 52))
},
'r50b_nvme_enclosure': {
i: {
Expand All @@ -201,7 +201,7 @@ def get_nvme_slot_info(model):
DISK_TOP_KEY: False,
DISK_REAR_KEY: True,
DISK_INTERNAL_KEY: False
} for i, j in zip(range(1, 3), range(25, 27))
} for i, j in zip(range(1, 3), range(49, 51))
},
'r50bm_nvme_enclosure': {
i: {
Expand All @@ -212,7 +212,7 @@ def get_nvme_slot_info(model):
DISK_TOP_KEY: False,
DISK_REAR_KEY: True,
DISK_INTERNAL_KEY: False
} for i, j in zip(range(1, 5), range(25, 29))
} for i, j in zip(range(1, 5), range(49, 53))
},
}
}
Expand Down

0 comments on commit 7d7b5ec

Please sign in to comment.