You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
Signed-off-by: Tao Huang <huangtao@rock-chips.com> Change-Id: I8474a4e94732570799ea1da051a706e45a0b72a3
19 lines
421 B
C
19 lines
421 B
C
/* 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_ */
|