mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-29 16:44:10 +02:00
ArmPkg: Fix ordering of return type and EFIAPI specifier in OemMiscLib
The return type should be on the line before any EFIAPI specifier. Signed-off-by: Rebecca Cran <rebecca@nuviainc.com> Reviewed-by: Leif Lindholm <leif@nuviainc.com>
This commit is contained in:
parent
078400ee15
commit
533fff506e
@ -71,8 +71,8 @@ typedef enum
|
|||||||
|
|
||||||
@return CPU frequency in Hz
|
@return CPU frequency in Hz
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
UINTN
|
UINTN
|
||||||
|
EFIAPI
|
||||||
OemGetCpuFreq (
|
OemGetCpuFreq (
|
||||||
IN UINT8 ProcessorIndex
|
IN UINT8 ProcessorIndex
|
||||||
);
|
);
|
||||||
@ -87,8 +87,8 @@ OemGetCpuFreq (
|
|||||||
|
|
||||||
@return TRUE on success, FALSE on failure.
|
@return TRUE on success, FALSE on failure.
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
|
EFIAPI
|
||||||
OemGetProcessorInformation (
|
OemGetProcessorInformation (
|
||||||
IN UINTN ProcessorIndex,
|
IN UINTN ProcessorIndex,
|
||||||
IN OUT PROCESSOR_STATUS_DATA *ProcessorStatus,
|
IN OUT PROCESSOR_STATUS_DATA *ProcessorStatus,
|
||||||
@ -106,8 +106,8 @@ OemGetProcessorInformation (
|
|||||||
|
|
||||||
@return TRUE on success, FALSE on failure.
|
@return TRUE on success, FALSE on failure.
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
|
EFIAPI
|
||||||
OemGetCacheInformation (
|
OemGetCacheInformation (
|
||||||
IN UINT8 ProcessorIndex,
|
IN UINT8 ProcessorIndex,
|
||||||
IN UINT8 CacheLevel,
|
IN UINT8 CacheLevel,
|
||||||
@ -120,8 +120,8 @@ OemGetCacheInformation (
|
|||||||
|
|
||||||
@return The maximum number of sockets.
|
@return The maximum number of sockets.
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
UINT8
|
UINT8
|
||||||
|
EFIAPI
|
||||||
OemGetProcessorMaxSockets (
|
OemGetProcessorMaxSockets (
|
||||||
VOID
|
VOID
|
||||||
);
|
);
|
||||||
@ -132,8 +132,8 @@ OemGetProcessorMaxSockets (
|
|||||||
|
|
||||||
@retval EFI_SUCCESS The chassis type was fetched successfully.
|
@retval EFI_SUCCESS The chassis type was fetched successfully.
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
|
EFIAPI
|
||||||
OemGetChassisType (
|
OemGetChassisType (
|
||||||
OUT UINT8 *ChassisType
|
OUT UINT8 *ChassisType
|
||||||
);
|
);
|
||||||
@ -144,8 +144,8 @@ OemGetChassisType (
|
|||||||
|
|
||||||
@return TRUE is the processor is present, FALSE otherwise.
|
@return TRUE is the processor is present, FALSE otherwise.
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
|
EFIAPI
|
||||||
OemIsSocketPresent (
|
OemIsSocketPresent (
|
||||||
IN UINTN ProcessorIndex
|
IN UINTN ProcessorIndex
|
||||||
);
|
);
|
||||||
@ -156,8 +156,8 @@ OemIsSocketPresent (
|
|||||||
@param TokenToUpdate The string to update.
|
@param TokenToUpdate The string to update.
|
||||||
@param Offset The field to get information about.
|
@param Offset The field to get information about.
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
VOID
|
VOID
|
||||||
|
EFIAPI
|
||||||
OemUpdateSmbiosInfo (
|
OemUpdateSmbiosInfo (
|
||||||
IN EFI_HII_HANDLE HiiHandle,
|
IN EFI_HII_HANDLE HiiHandle,
|
||||||
IN EFI_STRING_ID TokenToUpdate,
|
IN EFI_STRING_ID TokenToUpdate,
|
||||||
|
@ -23,8 +23,8 @@
|
|||||||
|
|
||||||
@return CPU frequency in Hz
|
@return CPU frequency in Hz
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
UINTN
|
UINTN
|
||||||
|
EFIAPI
|
||||||
OemGetCpuFreq (
|
OemGetCpuFreq (
|
||||||
IN UINT8 ProcessorIndex
|
IN UINT8 ProcessorIndex
|
||||||
)
|
)
|
||||||
@ -43,8 +43,8 @@ OemGetCpuFreq (
|
|||||||
|
|
||||||
@return TRUE on success, FALSE on failure.
|
@return TRUE on success, FALSE on failure.
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
|
EFIAPI
|
||||||
OemGetProcessorInformation (
|
OemGetProcessorInformation (
|
||||||
IN UINTN ProcessorIndex,
|
IN UINTN ProcessorIndex,
|
||||||
IN OUT PROCESSOR_STATUS_DATA *ProcessorStatus,
|
IN OUT PROCESSOR_STATUS_DATA *ProcessorStatus,
|
||||||
@ -66,8 +66,8 @@ OemGetProcessorInformation (
|
|||||||
|
|
||||||
@return TRUE on success, FALSE on failure.
|
@return TRUE on success, FALSE on failure.
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
|
EFIAPI
|
||||||
OemGetCacheInformation (
|
OemGetCacheInformation (
|
||||||
IN UINT8 ProcessorIndex,
|
IN UINT8 ProcessorIndex,
|
||||||
IN UINT8 CacheLevel,
|
IN UINT8 CacheLevel,
|
||||||
@ -84,8 +84,8 @@ OemGetCacheInformation (
|
|||||||
|
|
||||||
@return The maximum number of sockets.
|
@return The maximum number of sockets.
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
UINT8
|
UINT8
|
||||||
|
EFIAPI
|
||||||
OemGetProcessorMaxSockets (
|
OemGetProcessorMaxSockets (
|
||||||
VOID
|
VOID
|
||||||
)
|
)
|
||||||
@ -117,8 +117,8 @@ OemGetChassisType (
|
|||||||
|
|
||||||
@return TRUE is the processor is present, FALSE otherwise.
|
@return TRUE is the processor is present, FALSE otherwise.
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
|
EFIAPI
|
||||||
OemIsSocketPresent (
|
OemIsSocketPresent (
|
||||||
IN UINTN ProcessorIndex
|
IN UINTN ProcessorIndex
|
||||||
)
|
)
|
||||||
@ -133,8 +133,8 @@ OemIsSocketPresent (
|
|||||||
@param TokenToUpdate The string to update.
|
@param TokenToUpdate The string to update.
|
||||||
@param Offset The field to get information about.
|
@param Offset The field to get information about.
|
||||||
**/
|
**/
|
||||||
EFIAPI
|
|
||||||
VOID
|
VOID
|
||||||
|
EFIAPI
|
||||||
OemUpdateSmbiosInfo (
|
OemUpdateSmbiosInfo (
|
||||||
IN EFI_HII_HANDLE mHiiHandle,
|
IN EFI_HII_HANDLE mHiiHandle,
|
||||||
IN EFI_STRING_ID TokenToUpdate,
|
IN EFI_STRING_ID TokenToUpdate,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user