• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 "ClockRateAdjust_fp.h"
10 TPM_RC
TPM2_ClockRateAdjust(ClockRateAdjust_In * in)11 TPM2_ClockRateAdjust(
12    ClockRateAdjust_In    *in            // IN: input parameter list
13    )
14 {
15 // Internal Data Update
16    TimeSetAdjustRate(in->rateAdjust);
17 
18    return TPM_RC_SUCCESS;
19 }
20