mirror of
				https://github.com/acidanthera/audk.git
				synced 2025-11-03 21:17:23 +01:00 
			
		
		
		
	REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the MdeModulePkg 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: Liming Gao <gaoliming@byosoft.com.cn>
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/** @file -- VariablePolicyExtraInitNull.c
 | 
						|
This file contains extra init and deinit routines that don't do anything
 | 
						|
extra.
 | 
						|
 | 
						|
Copyright (c) Microsoft Corporation.
 | 
						|
SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
 | 
						|
**/
 | 
						|
 | 
						|
#include <Library/UefiRuntimeServicesTableLib.h>
 | 
						|
 | 
						|
/**
 | 
						|
  An extra init hook that enables the RuntimeDxe library instance to
 | 
						|
  register VirtualAddress change callbacks. Among other things.
 | 
						|
 | 
						|
  @retval     EFI_SUCCESS   Everything is good. Continue with init.
 | 
						|
  @retval     Others        Uh... don't continue.
 | 
						|
 | 
						|
**/
 | 
						|
EFI_STATUS
 | 
						|
VariablePolicyExtraInit (
 | 
						|
  VOID
 | 
						|
  )
 | 
						|
{
 | 
						|
  // NULL implementation.
 | 
						|
  return EFI_SUCCESS;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
  An extra deinit hook that enables the RuntimeDxe library instance to
 | 
						|
  register VirtualAddress change callbacks. Among other things.
 | 
						|
 | 
						|
  @retval     EFI_SUCCESS   Everything is good. Continue with deinit.
 | 
						|
  @retval     Others        Uh... don't continue.
 | 
						|
 | 
						|
**/
 | 
						|
EFI_STATUS
 | 
						|
VariablePolicyExtraDeinit (
 | 
						|
  VOID
 | 
						|
  )
 | 
						|
{
 | 
						|
  // NULL implementation.
 | 
						|
  return EFI_SUCCESS;
 | 
						|
}
 |