allwinner_a64/android/external/tpm2/ClockRateAdjust.c
2018-08-08 16:14:42 +08:00

19 lines
426 B
C

// This file was extracted from the TCG Published
// Trusted Platform Module Library
// Part 3: Commands
// Family "2.0"
// Level 00 Revision 01.16
// October 30, 2014
#include "InternalRoutines.h"
#include "ClockRateAdjust_fp.h"
TPM_RC
TPM2_ClockRateAdjust(
ClockRateAdjust_In *in // IN: input parameter list
)
{
// Internal Data Update
TimeSetAdjustRate(in->rateAdjust);
return TPM_RC_SUCCESS;
}