blob: 735aeb2ba8980321eb0c8946107155e45aabc564 [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 {
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070011 TPM_RH enable;
12 TPM_RH authHandle;
13 TPMI_YES_NO state;
Vadim Bendeburyb1650ce2015-05-27 10:31:32 -070014} HierarchyControl_In;
15
16TPM_RC TPM2_HierarchyControl(
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070017 HierarchyControl_In *in // IN: input parameter list
18 );
Vadim Bendeburyb1650ce2015-05-27 10:31:32 -070019
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070020#endif // __TPM2_HIERARCHYCONTROL_FP_H