19 lines
421 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
2026-01-29 22:25:33 +08:00
* Copyright (c) 2020 Rockchip Electronics Co., Ltd.
2026-01-21 18:59:54 +08:00
*/
#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_ */