• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /** @file
2   Defines Name GUIDs to represent an Opal device variable guid for Opal Security Feature.
3 
4 Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution.  The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9 
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 
13 **/
14 
15 #ifndef _OPAL_PASSWORD_EXTRA_INFO_VARIABLE_H_
16 #define _OPAL_PASSWORD_EXTRA_INFO_VARIABLE_H_
17 
18 #define OPAL_EXTRA_INFO_VAR_NAME L"OpalExtraInfo"
19 
20 typedef struct {
21   UINT8   EnableBlockSid;
22 } OPAL_EXTRA_INFO_VAR;
23 
24 extern EFI_GUID gOpalExtraInfoVariableGuid;
25 
26 #endif // _OPAL_PASSWORD_SECURITY_VARIABLE_H_
27 
28