mocked_tpm_bootmode.c revision ad03a439bc97523e03d19aa1dcd568744d60889c
1/* Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 *
5 * Functions for updating the TPM state with the status of boot path.
6 */
7
8#include "tpm_bootmode.h"
9
10#include "tss_constants.h"
11
12
13uint32_t SetTPMBootModeState(int developer_mode, int recovery_mode,
14                             uint64_t fw_keyblock_flags) {
15  return TPM_SUCCESS;
16}
17