OvmfPkg/Bhyve: Fix various style issues
Fix ordering of includes, sources, libraries etc. Remove leading/trailing underscores from include guards. Change INF and DSC version numbers to be decimal. Signed-off-by: Rebecca Cran <rebecca@bsdio.com> Message-Id: <20201130053412.2-6-rebecca@bsdio.com> Acked-by: Peter Grehan <grehan@freebsd.org> Acked-by: Laszlo Ersek <lersek@redhat.com> Build-tested-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
committed by
mergify[bot]
parent
3cdfedc20e
commit
9fb629edd7
@@ -13,14 +13,13 @@
|
||||
#define _SMBIOS_PLATFORM_DXE_H_
|
||||
|
||||
#include <PiDxe.h>
|
||||
|
||||
#include <Protocol/Smbios.h>
|
||||
#include <IndustryStandard/SmBios.h>
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/BaseLib.h>
|
||||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Library/UefiBootServicesTableLib.h>
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/MemoryAllocationLib.h>
|
||||
#include <Library/UefiBootServicesTableLib.h>
|
||||
|
||||
|
||||
/**
|
||||
@@ -49,4 +48,4 @@ IsEntryPointStructureValid (
|
||||
IN SMBIOS_TABLE_ENTRY_POINT *EntryPointStructure
|
||||
);
|
||||
|
||||
#endif
|
||||
#endif /* _SMBIOS_PLATFORM_DXE_H_ */
|
||||
|
@@ -10,7 +10,7 @@
|
||||
##
|
||||
|
||||
[Defines]
|
||||
INF_VERSION = 0x00010005
|
||||
INF_VERSION = 1.29
|
||||
BASE_NAME = SmbiosPlatformDxe
|
||||
FILE_GUID = e2d8a63c-c239-484f-bb21-2917843cc382
|
||||
MODULE_TYPE = DXE_DRIVER
|
||||
@@ -25,9 +25,9 @@
|
||||
#
|
||||
|
||||
[Sources]
|
||||
Bhyve.c
|
||||
SmbiosPlatformDxe.h
|
||||
SmbiosPlatformDxe.c
|
||||
Bhyve.c
|
||||
|
||||
[Packages]
|
||||
MdePkg/MdePkg.dec
|
||||
@@ -35,14 +35,14 @@
|
||||
OvmfPkg/OvmfPkg.dec
|
||||
|
||||
[LibraryClasses]
|
||||
UefiBootServicesTableLib
|
||||
BaseMemoryLib
|
||||
BaseLib
|
||||
UefiDriverEntryPoint
|
||||
BaseMemoryLib
|
||||
DebugLib
|
||||
HobLib
|
||||
MemoryAllocationLib
|
||||
PcdLib
|
||||
UefiBootServicesTableLib
|
||||
UefiDriverEntryPoint
|
||||
|
||||
[Pcd]
|
||||
gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated
|
||||
|
Reference in New Issue
Block a user