Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHusemann committed Jan 29, 2024
1 parent 7bc5e05 commit a3fe00e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,11 @@ InitializePciHost (

if (PCIE_SEGMENT == PCIE_SEGMENT_PCIE30X1 || PCIE_SEGMENT == PCIE_SEGMENT_PCIE30X2) {
/* Configure PCIe 3.0 PHY */
EFI_STATUS Status; Status = Pcie30PhyInit (); if (EFI_ERROR(Status)) { return Status; }
EFI_STATUS Status;
Status = Pcie30PhyInit ();
if (EFI_ERROR(Status)) {
return Status;
}
} else {
/* Configure PCIe 2.0 PHY */
MultiPhySetMode (2, MULTIPHY_MODE_PCIE);
Expand Down

0 comments on commit a3fe00e

Please sign in to comment.