blob: d99e1acb6477f6aeaad11469fa16be2d72652274 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (c) 2018 MediaTek Inc.
4 * Author: Weiyi Lu <weiyi.lu@mediatek.com>
5 */
6
7#include <stdbool.h>
8#include <stddef.h>
9
10struct clkchk_cfg_t {
11 bool aee_excp_on_fail;
12 bool warn_on_fail;
13 const char * const *compatible;
14 const char * const *off_pll_names;
15 const char * const *all_clk_names;
16};
17
18int clkchk_init(struct clkchk_cfg_t *cfg);