mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
dcbc3173b6
This allows for a vdd_class, which reference clk->rate, to be used with the HDMI PLL. It also removes the need to have a .get_rate op implemented. Change-Id: I1fd7eba16fa1e1af56513d400e58fdfdaff931e4 Signed-off-by: Matt Wagantall <mattw@codeaurora.org>
20 lines
720 B
C
20 lines
720 B
C
/* Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef __ARCH_ARM_MACH_MSM_CLOCK_DSS_8960
|
|
#define __ARCH_ARM_MACH_MSM_CLOCK_DSS_8960
|
|
|
|
int hdmi_pll_enable(void);
|
|
void hdmi_pll_disable(void);
|
|
int hdmi_pll_set_rate(unsigned rate);
|
|
|
|
#endif
|