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

Commit 008e7095 authored by Atul Raut's avatar Atul Raut Committed by Gerrit - the friendly Code Review server
Browse files

msm: spm: Fix compilation issue with spm module



Correct return value of msm_spm_set_rpm_hs function
to fix compilation issue with spm module.

Change-Id: Id186d6c2f7e3cf84fba68043bde2269d5895fe90
Signed-off-by: default avatarAtul Raut <araut@codeaurora.org>
parent 1446cd5f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ static inline int msm_spm_set_low_power_mode(unsigned int mode, bool notify_rpm)

static inline void msm_spm_set_rpm_hs(bool allow_rpm_hs)
{
	return -ENOSYS;
	return;
}

static inline int msm_spm_probe_done(void)