REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the RedfishPkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Abner Chang <abner.chang@hpe.com>
		
			
				
	
	
		
			102 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/** @file
 | 
						|
  Common Header file for Redfish Configuration Handler UEFI driver
 | 
						|
  and DXE driver.
 | 
						|
 | 
						|
  (C) Copyright 2021 Hewlett Packard Enterprise Development LP<BR>
 | 
						|
 | 
						|
  SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
 | 
						|
**/
 | 
						|
 | 
						|
#ifndef EFI_REDFISH_CONFIG_HANDLER_COMMON_H_
 | 
						|
#define EFI_REDFISH_CONFIG_HANDLER_COMMON_H_
 | 
						|
 | 
						|
#include <Uefi.h>
 | 
						|
 | 
						|
//
 | 
						|
// Libraries
 | 
						|
//
 | 
						|
#include <Library/BaseLib.h>
 | 
						|
#include <Library/BaseMemoryLib.h>
 | 
						|
#include <Library/DebugLib.h>
 | 
						|
#include <Library/MemoryAllocationLib.h>
 | 
						|
#include <Library/NetLib.h>
 | 
						|
#include <Library/UefiBootServicesTableLib.h>
 | 
						|
#include <Library/UefiDriverEntryPoint.h>
 | 
						|
#include <Library/UefiLib.h>
 | 
						|
 | 
						|
//
 | 
						|
// Consumed Protocols
 | 
						|
//
 | 
						|
#include <Protocol/EdkIIRedfishCredential.h>
 | 
						|
#include <Protocol/EdkIIRedfishConfigHandler.h>
 | 
						|
 | 
						|
//
 | 
						|
// Driver Version
 | 
						|
//
 | 
						|
#define REDFISH_CONFIG_VERSION  0x00000001
 | 
						|
 | 
						|
///
 | 
						|
///  Internal structure used by Redfish Config DXE driver.
 | 
						|
///
 | 
						|
typedef struct {
 | 
						|
  UINT32                                CallerId;           ///< Caller ID used to indicate Redfish Config Handler
 | 
						|
                                                            ///< has been initiated
 | 
						|
  EFI_HANDLE                            Image;              ///< Image handle of Redfish Config Driver
 | 
						|
  EFI_EVENT                             Event;              ///< Event for the notification of EFI_REDFISH_CONFIG_HANDLER_PROTOCOL
 | 
						|
  REDFISH_CONFIG_SERVICE_INFORMATION    RedfishServiceInfo; /// Redfish Service information discovered
 | 
						|
} REDFISH_CONFIG_DRIVER_DATA;
 | 
						|
 | 
						|
/**
 | 
						|
  Common code of unloading image for both UEFI/DXE Redfish Configuration drivers.
 | 
						|
 | 
						|
  @param[in]  ImageHandle       Handle that identifies the image to be unloaded.
 | 
						|
 | 
						|
  @retval EFI_SUCCESS           The image has been unloaded.
 | 
						|
 | 
						|
**/
 | 
						|
EFI_STATUS
 | 
						|
RedfishConfigDriverCommonUnload (
 | 
						|
  IN EFI_HANDLE  ImageHandle
 | 
						|
  );
 | 
						|
 | 
						|
/**
 | 
						|
  This is the common code for Redfish configuration UEFI and DXE driver
 | 
						|
  initialization.
 | 
						|
 | 
						|
  @param[in]  ImageHandle       The firmware allocated handle for the UEFI image.
 | 
						|
  @param[in]  SystemTable       A pointer to the EFI System Table.
 | 
						|
 | 
						|
  @retval EFI_SUCCESS           The operation completed successfully.
 | 
						|
  @retval Others                An unexpected error occurred.
 | 
						|
**/
 | 
						|
EFI_STATUS
 | 
						|
RedfishConfigCommonInit (
 | 
						|
  IN EFI_HANDLE        ImageHandle,
 | 
						|
  IN EFI_SYSTEM_TABLE  *SystemTable
 | 
						|
  );
 | 
						|
 | 
						|
/**
 | 
						|
  This is the common code to stop EDK2 Redfish feature driver.
 | 
						|
 | 
						|
  @retval EFI_SUCCESS    All EDK2 Redfish feature drivers are
 | 
						|
                         stopped.
 | 
						|
  @retval Others         An unexpected error occurred.
 | 
						|
**/
 | 
						|
EFI_STATUS
 | 
						|
RedfishConfigCommonStop (
 | 
						|
  VOID
 | 
						|
  );
 | 
						|
 | 
						|
/**
 | 
						|
  Callback function executed when a Redfish Config Handler Protocol is installed
 | 
						|
  by EDK2 Redfish Feature Drivers.
 | 
						|
 | 
						|
**/
 | 
						|
VOID
 | 
						|
RedfishConfigHandlerInitialization (
 | 
						|
  VOID
 | 
						|
  );
 | 
						|
 | 
						|
#endif
 |