mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
6afb050abf
PD#SWPL-152425 Problem: s7 dvfs bringup Solution: use dvfs v2 to bringup s7 Verify: s7 skt Change-Id: Ic1499df11129da0b553d565c165bddffcb53acf8 Signed-off-by: Xingxing Wang <xingxing.wang@amlogic.com>
14 lines
321 B
C
14 lines
321 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _AML_CPUFREQ_H__
|
|
#define _AML_CPUFREQ_H__
|
|
|
|
int aml_cpufreq_v1_init(void);
|
|
void aml_cpufreq_v1_exit(void);
|
|
int aml_cpufreq_v2_init(void);
|
|
void aml_cpufreq_v2_exit(void);
|
|
#endif /* _AML_CPUFREQ_H__ */
|