summaryrefslogtreecommitdiff
path: root/zephyr/shim/src/cbi/cros_cbi.c
blob: e6fa3e8cd1ad5985e05c68dbccc98cad39e49e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright 2021 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "cros_board_info.h"
#include "cros_cbi.h"
#include "hooks.h"

static void cros_cbi_ec_init(void)
{
	cros_cbi_ssfc_init();
	cros_cbi_fw_config_init();
}

DECLARE_HOOK(HOOK_INIT, cros_cbi_ec_init, HOOK_PRIO_FIRST);