summaryrefslogtreecommitdiff
path: root/zephyr/shim/src/cbi/cros_cbi.c
blob: 5b90f9442d43ae846bab38659f9ee7b6324c3ff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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_cbi.h"

#include "cros_board_info.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);