blob: 3b55157ae68a8c3612527b346ad1282f6860ab72 [file] [log] [blame]
Vadim Bendeburyb1650ce2015-05-27 10:31:32 -07001/*
2 * Copyright 2015 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#ifndef __TPM2_HIERARCHYCONTROL_FP_H
8#define __TPM2_HIERARCHYCONTROL_FP_H
9
10typedef struct {
11 TPM_RH enable;
12 TPM_RH authHandle;
13 TPMI_YES_NO state;
14} HierarchyControl_In;
15
16TPM_RC TPM2_HierarchyControl(
17 HierarchyControl_In *in // IN: input parameter list
18 );
19
20#endif // __TPM2_HIERARCHYCONTROL_FP_H