1 /* 2 * Copyright 2024 The ChromiumOS Authors 3 * Use of this source code is governed by a BSD-style license that can be 4 * found in the LICENSE file. 5 */ 6 7 #ifndef __GSC_UTILS_BOOT_PARAM_PLATFORM_HOST_H 8 #define __GSC_UTILS_BOOT_PARAM_PLATFORM_HOST_H 9 10 #include "boot_param_types.h" 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 extern struct dice_config_s g_dice_config; 17 18 #ifdef __cplusplus 19 } /* extern "C" */ 20 #endif 21 22 #endif /* __GSC_UTILS_BOOT_PARAM_PLATFORM_HOST_H */ 23