blob: fefc10878d137fb9435cf6cdd3354da0407efca0 [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
8#include "InternalRoutines.h"
9#include "FieldUpgradeStart_fp.h"
10#ifdef TPM_CC_FieldUpgradeStart // Conditional expansion of this file
11TPM_RC
12TPM2_FieldUpgradeStart(
13 FieldUpgradeStart_In *in // IN: input parameter list
14 )
15{
16 // Not implemented
17 UNUSED_PARAMETER(in);
18 return TPM_RC_SUCCESS;
19}
20#endif