Fix some coding style issues in MdeModulePkg.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9774 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
rsun3 2010-01-15 08:03:23 +00:00
parent 84213069e9
commit aa75dfeccd
16 changed files with 62 additions and 36 deletions

View File

@ -267,7 +267,7 @@ RegisterPciDevice (
ParrentPciIoDevice = PciIoDevice->Parent; ParrentPciIoDevice = PciIoDevice->Parent;
ParrentPciIo = &(ParrentPciIoDevice->PciIo); ParrentPciIo = &(ParrentPciIoDevice->PciIo);
ParrentPciIo->Pci.Read (PciIo, EfiPciIoWidthUint32, ParrentPciIoDevice->PciExpressCapabilityOffset + EFI_PCIE_CAPABILITY_DEVICE_CAPABILITIES_2_OFFSET, 1, &Data32); ParrentPciIo->Pci.Read (PciIo, EfiPciIoWidthUint32, ParrentPciIoDevice->PciExpressCapabilityOffset + EFI_PCIE_CAPABILITY_DEVICE_CAPABILITIES_2_OFFSET, 1, &Data32);
if (Data32 & EFI_PCIE_CAPABILITY_DEVICE_CAPABILITIES_2_ARI_FORWARDING) { if ((Data32 & EFI_PCIE_CAPABILITY_DEVICE_CAPABILITIES_2_ARI_FORWARDING) != 0) {
// //
// ARI forward support in bridge, so enable it. // ARI forward support in bridge, so enable it.
// //

View File

@ -1420,7 +1420,7 @@ PciIovParseVfBar (
} }
PciIoDevice->VfPciBar[BarIndex].Offset = (UINT8) Offset; PciIoDevice->VfPciBar[BarIndex].Offset = (UINT8) Offset;
if (Value & 0x01) { if ((Value & 0x01) != 0) {
// //
// Device I/Os. Impossible // Device I/Os. Impossible
// //
@ -1439,7 +1439,7 @@ PciIovParseVfBar (
//memory space; anywhere in 32 bit address space //memory space; anywhere in 32 bit address space
// //
case 0x00: case 0x00:
if (Value & 0x08) { if ((Value & 0x08) != 0) {
PciIoDevice->VfPciBar[BarIndex].BarType = PciBarTypePMem32; PciIoDevice->VfPciBar[BarIndex].BarType = PciBarTypePMem32;
} else { } else {
PciIoDevice->VfPciBar[BarIndex].BarType = PciBarTypeMem32; PciIoDevice->VfPciBar[BarIndex].BarType = PciBarTypeMem32;
@ -1465,7 +1465,7 @@ PciIovParseVfBar (
// memory space; anywhere in 64 bit address space // memory space; anywhere in 64 bit address space
// //
case 0x04: case 0x04:
if (Value & 0x08) { if ((Value & 0x08) != 0) {
PciIoDevice->VfPciBar[BarIndex].BarType = PciBarTypePMem64; PciIoDevice->VfPciBar[BarIndex].BarType = PciBarTypePMem64;
} else { } else {
PciIoDevice->VfPciBar[BarIndex].BarType = PciBarTypeMem64; PciIoDevice->VfPciBar[BarIndex].BarType = PciBarTypeMem64;

View File

@ -179,12 +179,15 @@ CreateResourceNode (
This function is used to extract resource request from This function is used to extract resource request from
IOV VF device node list. IOV VF device node list.
@param Bridge Pci device instance. @param PciDev Pci device instance.
@param IoNode Resource info node for IO. @param Length Length of Io/Memory resource.
@param Mem32Node Resource info node for 32-bit memory. @param Alignment Alignment of resource.
@param PMem32Node Resource info node for 32-bit Prefetchable Memory. @param Bar Bar index.
@param Mem64Node Resource info node for 64-bit memory. @param ResType Type of resource: IO/Memory.
@param PMem64Node Resource info node for 64-bit Prefetchable Memory. @param ResUsage Resource usage.
@return PCI resource node created for given PCI device.
NULL means PCI resource node is not created.
**/ **/
PCI_RESOURCE_NODE * PCI_RESOURCE_NODE *

View File

@ -1491,14 +1491,15 @@ ScsiDiskRequestSenseKeys (
Get information from media read capacity command. Get information from media read capacity command.
@param ScsiDiskDevice The pointer of SCSI_DISK_DEV @param ScsiDiskDevice The pointer of SCSI_DISK_DEV
@param Capacity The pointer of EFI_SCSI_DISK_CAPACITY_DATA @param Capacity10 The pointer of EFI_SCSI_DISK_CAPACITY_DATA
@param Capacity16 The pointer of EFI_SCSI_DISK_CAPACITY_DATA16
**/ **/
VOID VOID
GetMediaInfo ( GetMediaInfo (
IN OUT SCSI_DISK_DEV *ScsiDiskDevice, IN OUT SCSI_DISK_DEV *ScsiDiskDevice,
EFI_SCSI_DISK_CAPACITY_DATA *Capacity10, IN EFI_SCSI_DISK_CAPACITY_DATA *Capacity10,
EFI_SCSI_DISK_CAPACITY_DATA16 *Capacity16 IN EFI_SCSI_DISK_CAPACITY_DATA16 *Capacity16
) )
{ {
UINT8 ScsiVersion; UINT8 ScsiVersion;

View File

@ -773,9 +773,9 @@ ScsiDiskWrite10 (
**/ **/
VOID VOID
GetMediaInfo ( GetMediaInfo (
SCSI_DISK_DEV *ScsiDiskDevice, IN OUT SCSI_DISK_DEV *ScsiDiskDevice,
EFI_SCSI_DISK_CAPACITY_DATA *Capacity10, IN EFI_SCSI_DISK_CAPACITY_DATA *Capacity10,
EFI_SCSI_DISK_CAPACITY_DATA16 *Capacity16 IN EFI_SCSI_DISK_CAPACITY_DATA16 *Capacity16
); );
/** /**

View File

@ -634,7 +634,7 @@ PeiFfsFindSectionData (
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation. @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
@param SearchType Filter to find only files of this type. @param SearchType Filter to find only files of this type.
Type EFI_FV_FILETYPE_ALL causes no filtering to be done. Type EFI_FV_FILETYPE_ALL causes no filtering to be done.
@param VolumeHandle Handle of firmware volume in which to search. @param FvHandle Handle of firmware volume in which to search.
@param FileHandle On entry, points to the current handle from which to begin searching or NULL to start @param FileHandle On entry, points to the current handle from which to begin searching or NULL to start
at the beginning of the firmware volume. On exit, points the file handle of the next file at the beginning of the firmware volume. On exit, points the file handle of the next file
in the volume or NULL if there are no more files. in the volume or NULL if there are no more files.

View File

@ -656,7 +656,7 @@ PeiCoreBuildHobHandoffInfoTable (
@param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation. @param PeiServices An indirect pointer to the EFI_PEI_SERVICES table published by the PEI Foundation.
@param SearchType Filter to find only files of this type. @param SearchType Filter to find only files of this type.
Type EFI_FV_FILETYPE_ALL causes no filtering to be done. Type EFI_FV_FILETYPE_ALL causes no filtering to be done.
@param VolumeHandle Handle of firmware volume in which to search. @param FvHandle Handle of firmware volume in which to search.
@param FileHandle On entry, points to the current handle from which to begin searching or NULL to start @param FileHandle On entry, points to the current handle from which to begin searching or NULL to start
at the beginning of the firmware volume. On exit, points the file handle of the next file at the beginning of the firmware volume. On exit, points the file handle of the next file
in the volume or NULL if there are no more files. in the volume or NULL if there are no more files.
@ -715,7 +715,7 @@ EFIAPI
PeiFfsFindNextVolume ( PeiFfsFindNextVolume (
IN CONST EFI_PEI_SERVICES **PeiServices, IN CONST EFI_PEI_SERVICES **PeiServices,
IN UINTN Instance, IN UINTN Instance,
IN OUT EFI_PEI_FV_HANDLE *FwVolHeader IN OUT EFI_PEI_FV_HANDLE *VolumeHandle
); );
// //
@ -934,7 +934,7 @@ PeiFfsFindFileByName (
Returns information about a specific file. Returns information about a specific file.
@param FileHandle Handle of the file. @param FileHandle Handle of the file.
@param FileInfo Upon exit, points to the files information. @param FileInfo Upon exit, points to the file's information.
@retval EFI_INVALID_PARAMETER If FileInfo is NULL. @retval EFI_INVALID_PARAMETER If FileInfo is NULL.
@retval EFI_INVALID_PARAMETER If FileHandle does not represent a valid file. @retval EFI_INVALID_PARAMETER If FileHandle does not represent a valid file.
@ -952,7 +952,7 @@ PeiFfsGetFileInfo (
Returns information about the specified volume. Returns information about the specified volume.
@param VolumeHandle Handle of the volume. @param VolumeHandle Handle of the volume.
@param VolumeInfo Upon exit, points to the volumes information. @param VolumeInfo Upon exit, points to the volume's information.
@retval EFI_INVALID_PARAMETER If VolumeHandle does not represent a valid volume. @retval EFI_INVALID_PARAMETER If VolumeHandle does not represent a valid volume.
@retval EFI_INVALID_PARAMETER If VolumeInfo is NULL. @retval EFI_INVALID_PARAMETER If VolumeInfo is NULL.

View File

@ -29,7 +29,6 @@
FV protocol, then it will return the first FV that contains the ACPI table FV protocol, then it will return the first FV that contains the ACPI table
storage file. storage file.
@param Protocol The protocol to find.
@param Instance Return pointer to the first instance of the protocol @param Instance Return pointer to the first instance of the protocol
@return EFI_SUCCESS The function completed successfully. @return EFI_SUCCESS The function completed successfully.

View File

@ -1847,6 +1847,14 @@ EraseCursor (
return EFI_SUCCESS; return EFI_SUCCESS;
} }
/**
HII Database Protocol notification event handler.
Register font package when HII Database Protocol has been installed.
@param[in] Event Event whose notification function is being invoked.
@param[in] Context Pointer to the notification function's context.
**/
VOID VOID
EFIAPI EFIAPI
RegisterFontPackage ( RegisterFontPackage (

View File

@ -111,7 +111,7 @@ typedef struct {
#define RESET_STATE_DEFAULT 0x00 #define RESET_STATE_DEFAULT 0x00
#define RESET_STATE_ESC_R 0x01 #define RESET_STATE_ESC_R 0x01
#define RESET_STATE_ESC_R_ESC_r 0x02 #define RESET_STATE_ESC_R_ESC_R 0x02
#define TERMINAL_CON_IN_DEV_FROM_THIS(a) CR (a, TERMINAL_DEV, SimpleInput, TERMINAL_DEV_SIGNATURE) #define TERMINAL_CON_IN_DEV_FROM_THIS(a) CR (a, TERMINAL_DEV, SimpleInput, TERMINAL_DEV_SIGNATURE)
#define TERMINAL_CON_OUT_DEV_FROM_THIS(a) CR (a, TERMINAL_DEV, SimpleTextOutput, TERMINAL_DEV_SIGNATURE) #define TERMINAL_CON_OUT_DEV_FROM_THIS(a) CR (a, TERMINAL_DEV, SimpleTextOutput, TERMINAL_DEV_SIGNATURE)

View File

@ -1346,14 +1346,14 @@ UnicodeToEfiKey (
if (TerminalDevice->ResetState == RESET_STATE_DEFAULT) { if (TerminalDevice->ResetState == RESET_STATE_DEFAULT) {
TerminalDevice->ResetState = RESET_STATE_ESC_R; TerminalDevice->ResetState = RESET_STATE_ESC_R;
SetDefaultResetState = FALSE; SetDefaultResetState = FALSE;
} else if (TerminalDevice->ResetState == RESET_STATE_ESC_R_ESC_r) { } else if (TerminalDevice->ResetState == RESET_STATE_ESC_R_ESC_R) {
gRT->ResetSystem (EfiResetWarm, EFI_SUCCESS, 0, NULL); gRT->ResetSystem (EfiResetWarm, EFI_SUCCESS, 0, NULL);
} }
Key.ScanCode = SCAN_NULL; Key.ScanCode = SCAN_NULL;
break; break;
case 'r': case 'r':
if (TerminalDevice->ResetState == RESET_STATE_ESC_R) { if (TerminalDevice->ResetState == RESET_STATE_ESC_R) {
TerminalDevice->ResetState = RESET_STATE_ESC_R_ESC_r; TerminalDevice->ResetState = RESET_STATE_ESC_R_ESC_R;
SetDefaultResetState = FALSE; SetDefaultResetState = FALSE;
} }
Key.ScanCode = SCAN_NULL; Key.ScanCode = SCAN_NULL;

View File

@ -863,6 +863,14 @@ FtwGetLastWrite (
return Status; return Status;
} }
/**
Firmware Volume Block Protocol notification event handler.
Initialization for Fault Tolerant Write is done in this handler.
@param[in] Event Event whose notification function is being invoked.
@param[in] Context Pointer to the notification function's context.
**/
VOID VOID
EFIAPI EFIAPI
FvbNotificationEvent ( FvbNotificationEvent (

View File

@ -168,7 +168,7 @@ GetDevicePath (
Converts the unicode character of the string from uppercase to lowercase. Converts the unicode character of the string from uppercase to lowercase.
This is a internal function. This is a internal function.
@param Str String to be converted @param ConfigString String to be converted
**/ **/
VOID VOID
@ -773,7 +773,7 @@ InsertBlockData (
/** /**
This function checks VarOffset and VarWidth is in the block range. This function checks VarOffset and VarWidth is in the block range.
@param BlockArray The block array is to be checked. @param RequestBlockArray The block array is to be checked.
@param VarOffset Offset of var to the structure @param VarOffset Offset of var to the structure
@param VarWidth Width of var. @param VarWidth Width of var.
@ -831,7 +831,7 @@ EFI_STATUS
EFIAPI EFIAPI
ParseIfrData ( ParseIfrData (
IN UINT8 *Package, IN UINT8 *Package,
IN UINT32 PackageLenth, IN UINT32 PackageLength,
IN EFI_STRING ConfigHdr, IN EFI_STRING ConfigHdr,
IN IFR_BLOCK_DATA *RequestBlockArray, IN IFR_BLOCK_DATA *RequestBlockArray,
IN OUT IFR_VARSTORAGE_DATA *VarStorageData, IN OUT IFR_VARSTORAGE_DATA *VarStorageData,
@ -874,7 +874,7 @@ ParseIfrData (
// Go through the form package to parse OpCode one by one. // Go through the form package to parse OpCode one by one.
// //
IfrOffset = sizeof (EFI_HII_PACKAGE_HEADER); IfrOffset = sizeof (EFI_HII_PACKAGE_HEADER);
while (IfrOffset < PackageLenth) { while (IfrOffset < PackageLength) {
IfrOpHdr = (EFI_IFR_OP_HEADER *) (Package + IfrOffset); IfrOpHdr = (EFI_IFR_OP_HEADER *) (Package + IfrOffset);
switch (IfrOpHdr->OpCode) { switch (IfrOpHdr->OpCode) {

View File

@ -1363,8 +1363,7 @@ EmuQueryVariableInfo (
This function allocates memory space for variable store area and initializes its attributes. This function allocates memory space for variable store area and initializes its attributes.
@param VariableBase Base of the variable store area created @param VolatileStore Indicates if the variable store is volatile.
@param LastVariableOffset Size of VARIABLE_STORE_HEADER
**/ **/
EFI_STATUS EFI_STATUS

View File

@ -465,7 +465,7 @@ FindVariable (
// //
// Record Variable in VariableIndex HOB // Record Variable in VariableIndex HOB
// //
if (IndexTable->Length < VARIABLE_INDEX_TABLE_VOLUME && StopRecord != TRUE) { if (IndexTable->Length < VARIABLE_INDEX_TABLE_VOLUME && !StopRecord) {
Offset = (UINT32)((UINTN)Variable - (UINTN)LastVariable); Offset = (UINT32)((UINTN)Variable - (UINTN)LastVariable);
// //
// The distance of two neighbouring VAR_ADDED variable is larger than 2^16, // The distance of two neighbouring VAR_ADDED variable is larger than 2^16,
@ -476,7 +476,7 @@ FindVariable (
StopRecord = TRUE; StopRecord = TRUE;
} }
if (StopRecord != TRUE) { if (!StopRecord) {
IndexTable->Index[IndexTable->Length++] = (UINT16) Offset; IndexTable->Index[IndexTable->Length++] = (UINT16) Offset;
} }
LastVariable = Variable; LastVariable = Variable;

View File

@ -2215,7 +2215,7 @@ ReclaimForOS(
/** /**
Initializes variable store area for non-volatile and volatile variable. Initializes variable store area for non-volatile and volatile variable.
@param SystemTable The pointer of EFI_SYSTEM_TABLE. @param FvbProtocol Pointer to an instance of EFI Firmware Volume Block Protocol.
@retval EFI_SUCCESS Function successfully executed. @retval EFI_SUCCESS Function successfully executed.
@retval EFI_OUT_OF_RESOURCES Fail to allocate enough memory resource. @retval EFI_OUT_OF_RESOURCES Fail to allocate enough memory resource.
@ -2240,6 +2240,7 @@ VariableCommonInitialize (
UINT64 VariableStoreLength; UINT64 VariableStoreLength;
EFI_EVENT ReadyToBootEvent; EFI_EVENT ReadyToBootEvent;
UINTN ScratchSize; UINTN ScratchSize;
UINTN VariableSize;
Status = EFI_SUCCESS; Status = EFI_SUCCESS;
// //
@ -2353,7 +2354,6 @@ VariableCommonInitialize (
Status = EFI_SUCCESS; Status = EFI_SUCCESS;
while (IsValidVariableHeader (NextVariable)) { while (IsValidVariableHeader (NextVariable)) {
UINTN VariableSize = 0;
VariableSize = NextVariable->NameSize + NextVariable->DataSize + sizeof (VARIABLE_HEADER); VariableSize = NextVariable->NameSize + NextVariable->DataSize + sizeof (VARIABLE_HEADER);
if ((NextVariable->Attributes & (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_HARDWARE_ERROR_RECORD)) == (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_HARDWARE_ERROR_RECORD)) { if ((NextVariable->Attributes & (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_HARDWARE_ERROR_RECORD)) == (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_HARDWARE_ERROR_RECORD)) {
mVariableModuleGlobal->HwErrVariableTotalSize += HEADER_ALIGN (VariableSize); mVariableModuleGlobal->HwErrVariableTotalSize += HEADER_ALIGN (VariableSize);
@ -2449,6 +2449,14 @@ VariableClassAddressChangeEvent (
EfiConvertPointer (0x0, (VOID **) &mVariableModuleGlobal); EfiConvertPointer (0x0, (VOID **) &mVariableModuleGlobal);
} }
/**
Firmware Volume Block Protocol notification event handler.
Discover NV Variable Store and install Variable Arch Protocol.
@param[in] Event Event whose notification function is being invoked.
@param[in] Context Pointer to the notification function's context.
**/
VOID VOID
EFIAPI EFIAPI
FvbNotificationEvent ( FvbNotificationEvent (