hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/** @file
  Silicon workaround library.
 
  @copyright
  Copyright 2006 - 2021 Intel Corporation. <BR>
 
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
 
//
// Statements that include other files
//
#include <Library/SiliconWorkaroundLib.h>
#include <Library/BaseLib.h>
 
 
/**
  Return whether the workaround is enabled.
 
  This function returns a boolean that determines whether the workaround is enabled
  given a workaround name.
 
  @param[in]      WorkaroundName         An ASCII string that represents the workaround name.
                                         This workaround name should correspond to an entry
                                         in the silicon workarounds table(s).
 
  @retval TRUE    The workaround is enabled.
  @retval FALSE   The workaround is not found in the table(s) and therefore disabled.
 
**/
BOOLEAN
EFIAPI
IsSiliconWorkaroundEnabled (
  IN CONST CHAR8    *WorkaroundName
  )
{
  return FALSE;
}