Home | History | Annotate | Download | only in tpm2
      1 // 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 "FieldUpgradeData_fp.h"
     10 #ifdef TPM_CC_FieldUpgradeData // Conditional expansion of this file
     11 TPM_RC
     12 TPM2_FieldUpgradeData(
     13    FieldUpgradeData_In       *in,             // IN: input parameter list
     14    FieldUpgradeData_Out      *out             // OUT: output parameter list
     15    )
     16 {
     17    // Not implemented
     18    UNUSED_PARAMETER(in);
     19    UNUSED_PARAMETER(out);
     20    return TPM_RC_SUCCESS;
     21 }
     22 #endif
     23