blob: 46364771fc9967ec46bbf3f2749da7b497e2f4f4 [file] [log] [blame]
Vadim Bendebury56797522015-05-20 10:32:25 -07001// This file was extracted from the TCG Published
2// Trusted Platform Module Library
3// Part 3: Commands
4// Family "2.0"
5// Level 00 Revision 01.16
6// October 30, 2014
7
Vadim Bendeburyb5058c42015-05-29 17:42:36 -07008typedef void FirmwareRead_In;
9typedef void FirmwareRead_Out;
10
Vadim Bendebury56797522015-05-20 10:32:25 -070011#include "InternalRoutines.h"
12#include "FirmwareRead_fp.h"
13TPM_RC
14TPM2_FirmwareRead(
15 FirmwareRead_In *in, // IN: input parameter list
16 FirmwareRead_Out *out // OUT: output parameter list
17 )
18{
19 // Not implemented
20 UNUSED_PARAMETER(in);
21 UNUSED_PARAMETER(out);
22 return TPM_RC_SUCCESS;
23}