summaryrefslogtreecommitdiff
path: root/zephyr/shim/src/cbi.c
blob: e9d85b60883d28dc6dd2d413cef531b47818376d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Copyright 2021 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include <drivers/cros_cbi.h>
#include <logging/log.h>
#include "hooks.h"

LOG_MODULE_REGISTER(shim_cbi, LOG_LEVEL_ERR);

static void cbi_dev_init(void)
{
	const struct device *dev = device_get_binding(CROS_CBI_LABEL);

	if (!dev)
		LOG_ERR("Fail to find %s", CROS_CBI_LABEL);

	cros_cbi_init(dev);
}

DECLARE_HOOK(HOOK_INIT, cbi_dev_init, HOOK_PRIO_FIRST);