mirror of https://github.com/acidanthera/audk.git
ArmPlatformPkg: Coding style (minor changes)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12625 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
a79803d7f9
commit
793275a858
|
@ -57,7 +57,7 @@ UefiMain (
|
||||||
return EFI_UNSUPPORTED;
|
return EFI_UNSUPPORTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generate the File Path Node for the Linux Kernel & Device Tree blobl
|
// Generate the File Path Node for the Linux Kernel & Device Tree blob
|
||||||
DevicePathKernel = FileDevicePath (LoadedImage->DeviceHandle, LINUX_KERNEL_NAME);
|
DevicePathKernel = FileDevicePath (LoadedImage->DeviceHandle, LINUX_KERNEL_NAME);
|
||||||
DevicePathFdt = FileDevicePath (LoadedImage->DeviceHandle, FDT_NAME);
|
DevicePathFdt = FileDevicePath (LoadedImage->DeviceHandle, FDT_NAME);
|
||||||
|
|
||||||
|
|
|
@ -181,7 +181,7 @@ GetHIInputBoolean (
|
||||||
|
|
||||||
while(1) {
|
while(1) {
|
||||||
Print (L"[y/n] ");
|
Print (L"[y/n] ");
|
||||||
Status = GetHIInputStr (CmdBoolean,2);
|
Status = GetHIInputStr (CmdBoolean, 2);
|
||||||
if (EFI_ERROR(Status)) {
|
if (EFI_ERROR(Status)) {
|
||||||
return Status;
|
return Status;
|
||||||
} else if ((CmdBoolean[0] == L'y') || (CmdBoolean[0] == L'Y')) {
|
} else if ((CmdBoolean[0] == L'y') || (CmdBoolean[0] == L'Y')) {
|
||||||
|
|
|
@ -88,9 +88,9 @@ typedef enum {
|
||||||
} BDS_SUPPORTED_DEVICE_TYPE;
|
} BDS_SUPPORTED_DEVICE_TYPE;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
LIST_ENTRY Link;
|
LIST_ENTRY Link;
|
||||||
CHAR16 Description[BOOT_DEVICE_DESCRIPTION_MAX];
|
CHAR16 Description[BOOT_DEVICE_DESCRIPTION_MAX];
|
||||||
EFI_DEVICE_PATH_PROTOCOL* DevicePathProtocol;
|
EFI_DEVICE_PATH_PROTOCOL* DevicePathProtocol;
|
||||||
struct _BDS_LOAD_OPTION_SUPPORT* Support;
|
struct _BDS_LOAD_OPTION_SUPPORT* Support;
|
||||||
} BDS_SUPPORTED_DEVICE;
|
} BDS_SUPPORTED_DEVICE;
|
||||||
|
|
||||||
|
|
|
@ -12,8 +12,8 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
#include <AsmMacroIoLib.h>
|
#include <AsmMacroIoLib.h>
|
||||||
#include <Base.h>
|
|
||||||
#include <AutoGen.h>
|
#include <AutoGen.h>
|
||||||
|
#include "SecInternal.h"
|
||||||
|
|
||||||
.text
|
.text
|
||||||
.align 5
|
.align 5
|
||||||
|
|
Loading…
Reference in New Issue