Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 13 uint32_t SetTPMBootModeState(int developer_mode, int recovery_mode, | |
| 14 int fw_keyblock_flags) { | |
| 15 return TPM_SUCCESS; | |
| 16 } | |
| OLD | NEW |