You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
421 B
19 lines
421 B
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (c) 2020 Rockchip Electronics Co., Ltd.
|
|
*/
|
|
|
|
#ifndef __LINUX_CLK_ROCKCHIP_H_
|
|
#define __LINUX_CLK_ROCKCHIP_H_
|
|
|
|
#ifdef CONFIG_ROCKCHIP_CLK_COMPENSATION
|
|
int rockchip_pll_clk_compensation(struct clk *clk, int ppm);
|
|
#else
|
|
static inline int rockchip_pll_clk_compensation(struct clk *clk, int ppm)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
#endif
|
|
|
|
#endif /* __LINUX_CLK_ROCKCHIP_H_ */
|