mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 01:56:50 +07:00
b1d6c5b26d
This patch uses static declaration struct which is not used in other file and re-arrange with group in header file. Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
32 lines
905 B
C
32 lines
905 B
C
/*
|
|
*
|
|
* Copyright (c) 2011 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com
|
|
*
|
|
* Header file for exynos4 clock support
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_CLOCK_H
|
|
#define __ASM_ARCH_CLOCK_H __FILE__
|
|
|
|
#include <linux/clk.h>
|
|
|
|
extern struct clksrc_clk clk_mout_mpll;
|
|
extern struct clksrc_clk clk_aclk_133;
|
|
|
|
extern struct clksrc_sources clkset_mout_corebus;
|
|
extern struct clksrc_sources clkset_group;
|
|
|
|
extern struct clk *clkset_aclk_top_list[];
|
|
extern struct clk *clkset_group_list[];
|
|
|
|
extern int exynos4_clksrc_mask_fsys_ctrl(struct clk *clk, int enable);
|
|
extern int exynos4_clk_ip_fsys_ctrl(struct clk *clk, int enable);
|
|
extern int exynos4_clk_ip_lcd1_ctrl(struct clk *clk, int enable);
|
|
|
|
#endif /* __ASM_ARCH_CLOCK_H */
|