blob: a7301ebaf4e4510d155d490181272d36935c37a8 [file] [log] [blame]
Vadim Bendeburyd0c32ac2015-05-28 15:36:04 -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_CLEARCONTROL_FP_H
8#define __TPM2_CLEARCONTROL_FP_H
9
10typedef struct {
11 TPMI_YES_NO disable;
12 TPM_RH auth;
13} ClearControl_In;
14
15TPM_RC TPM2_ClearControl(
16 ClearControl_In *in // IN: input parameter list
17);
18
19#endif // __TPM2_CLEARCONTROL_FP_H