blob: f7d708540b6e94b754eda5e0e49eb79e3c1c73fa [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 Bendebury56797522015-05-20 10:32:25 -07008#include "InternalRoutines.h"
9#include "FirmwareRead_fp.h"
10TPM_RC
11TPM2_FirmwareRead(
12 FirmwareRead_In *in, // IN: input parameter list
13 FirmwareRead_Out *out // OUT: output parameter list
14 )
15{
16 // Not implemented
17 UNUSED_PARAMETER(in);
18 UNUSED_PARAMETER(out);
19 return TPM_RC_SUCCESS;
20}