Skip to content

Commit

Permalink
qsfp_service: add DARWIN48V platform references (#259)
Browse files Browse the repository at this point in the history
Summary:
# Description

Adds `DARWIN48V` platform references to qsfp_service. Note that this depends on the changes in #257.

Pull Request resolved: #259

Test Plan:
FBOSS OSS build passes with CentOS 9 and Linux kernel 6.4.

qsfp_service code untested on HW.

Reviewed By: kimdo8736

Differential Revision: D64087960

Pulled By: joancaneus

fbshipit-source-id: 6e8bfaeda5c618ecbf101c382292aec60c8fd6a9
  • Loading branch information
adamcalabrigo authored and facebook-github-bot committed Dec 5, 2024
1 parent 453c185 commit 1cd75b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fboss/qsfp_service/platforms/wedge/WedgeManagerInit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ std::unique_ptr<WedgeManager> createWedgeManager() {
return std::make_unique<GalaxyManager>(mode, platformMappingStr);
} else if (mode == PlatformType::PLATFORM_YAMP) {
return createYampWedgeManager(platformMappingStr);
} else if (mode == PlatformType::PLATFORM_DARWIN) {
} else if (
mode == PlatformType::PLATFORM_DARWIN ||
mode == PlatformType::PLATFORM_DARWIN48V) {
return createDarwinWedgeManager(platformMappingStr);
} else if (mode == PlatformType::PLATFORM_ELBERT) {
return createElbertWedgeManager(platformMappingStr);
Expand Down

0 comments on commit 1cd75b9

Please sign in to comment.