MdePkg: Clean up source files
1. Do not use tab characters 2. No trailing white space in one line 3. All files must end with CRLF Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
This function returns information of type InformationType from the adapter.
|
||||
If an adapter does not support the requested informational type, then
|
||||
EFI_UNSUPPORTED is returned.
|
||||
EFI_UNSUPPORTED is returned.
|
||||
|
||||
@param[in] This A pointer to the EFI_ADAPTER_INFORMATION_PROTOCOL instance.
|
||||
@param[in] InformationType A pointer to an EFI_GUID that defines the contents of InformationBlock.
|
||||
@@ -30,8 +30,8 @@
|
||||
@retval EFI_UNSUPPORTED The InformationType is not known.
|
||||
@retval EFI_DEVICE_ERROR The device reported an error.
|
||||
@retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack of resources.
|
||||
@retval EFI_INVALID_PARAMETER This is NULL.
|
||||
@retval EFI_INVALID_PARAMETER InformationBlock is NULL.
|
||||
@retval EFI_INVALID_PARAMETER This is NULL.
|
||||
@retval EFI_INVALID_PARAMETER InformationBlock is NULL.
|
||||
@retval EFI_INVALID_PARAMETER InformationBlockSize is NULL.
|
||||
|
||||
**/
|
||||
|
@@ -115,7 +115,7 @@ InternalHstiFindAip (
|
||||
}
|
||||
|
||||
Hsti = InformationBlock;
|
||||
if ((Hsti->Role == Role) &&
|
||||
if ((Hsti->Role == Role) &&
|
||||
((ImplementationID == NULL) || (StrCmp (ImplementationID, Hsti->ImplementationID) == 0))) {
|
||||
break;
|
||||
} else {
|
||||
@@ -311,7 +311,7 @@ HstiLibSetTable (
|
||||
CopyMem (&HstiAip->Aip, &mAdapterInformationProtocol, sizeof(EFI_ADAPTER_INFORMATION_PROTOCOL));
|
||||
HstiAip->HstiSize = HstiSize;
|
||||
HstiAip->HstiMaxSize = HstiSize;
|
||||
|
||||
|
||||
Handle = NULL;
|
||||
Status = gBS->InstallMultipleProtocolInterfaces (
|
||||
&Handle,
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@@ -62,4 +62,4 @@ InternalHstiIsValidTable (
|
||||
IN UINTN HstiSize
|
||||
);
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user