Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 756d40f7 authored by Anirudh Ghayal's avatar Anirudh Ghayal
Browse files

include: msm_thermal: Fix compilation error



Fix the compilation error in msm_thermal due to an
unexpected semi-colon.

Change-Id: Ia633518badee663de3c5f3ec918e8cfae06e217c
Signed-off-by: default avatarAnirudh Ghayal <aghayal@codeaurora.org>
parent f9b0f880
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -266,22 +266,22 @@ static inline int msm_thermal_set_frequency(uint32_t cpu, uint32_t freq,
	return -ENOSYS;
}
static inline int msm_thermal_set_cluster_freq(uint32_t cluster, uint32_t freq,
	bool is_max);
	bool is_max)
{
	return -ENOSYS;
}
static inline int msm_thermal_get_freq_plan_size(uint32_t cluster,
	unsigned int *table_len);
	unsigned int *table_len)
{
	return -ENOSYS;
}
static inline int msm_thermal_get_cluster_freq_plan(uint32_t cluster,
	unsigned int *table_ptr);
	unsigned int *table_ptr)
{
	return -ENOSYS;
}
static inline int msm_thermal_get_cluster_voltage_plan(uint32_t cluster,
	uint32_t *table_ptr);
	uint32_t *table_ptr)
{
	return -ENOSYS;
}