Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions Platform/RaspberryPi/Drivers/FdtDxe/FdtDxe.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#include <Library/FdtLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
#include <Protocol/RpiFirmware.h>
#include <Guid/Fdt.h>
#include <ConfigVars.h>
Expand Down Expand Up @@ -500,37 +499,37 @@ FdtDxeInitialize (

Status = SanitizePSCI ();
if (EFI_ERROR (Status)) {
Print (L"Failed to sanitize PSCI: %r\n", Status);
DEBUG (("Failed to sanitize PSCI: %r\n", Status));
}

Status = CleanMemoryNodes ();
if (EFI_ERROR (Status)) {
Print (L"Failed to clean memory nodes: %r\n", Status);
DEBUG (("Failed to clean memory nodes: %r\n", Status));
}

Status = CleanSimpleFramebuffer ();
if (EFI_ERROR (Status)) {
Print (L"Failed to clean frame buffer: %r\n", Status);
DEBUG (("Failed to clean frame buffer: %r\n", Status));
}

Status = FixEthernetAliases ();
if (EFI_ERROR (Status)) {
Print (L"Failed to fix ethernet aliases: %r\n", Status);
DEBUG (("Failed to fix ethernet aliases: %r\n", Status));
}

Status = UpdateMacAddress ();
if (EFI_ERROR (Status)) {
Print (L"Failed to update MAC address: %r\n", Status);
DEBUG (("Failed to update MAC address: %r\n", Status));
}

Status = AddUsbCompatibleProperty ();
if (EFI_ERROR (Status)) {
Print (L"Failed to update USB compatible properties: %r\n", Status);
DEBUG (("Failed to update USB compatible properties: %r\n", Status));
}

SyncPcie ();
if (EFI_ERROR (Status)) {
Print (L"Failed to update PCIe address ranges: %r\n", Status);
DEBUG (("Failed to update PCIe address ranges: %r\n", Status));
}

DEBUG ((DEBUG_INFO, "Installed devicetree at address %p\n", mFdtImage));
Expand Down