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

Commit 6a642509 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown
Browse files

regulator: qcom_rpm: Fix FORCE_MODE_IS_2_BITS macro



Current code does not take the macro parameter, fix it.
This is not a problem at this moment because the only user actually passes
vreg to FORCE_MODE_IS_2_BITS().

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent aad615c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ struct rpm_reg_parts {
};

#define FORCE_MODE_IS_2_BITS(reg) \
	((vreg->parts->fm.mask >> vreg->parts->fm.shift) == 3)
	(((reg)->parts->fm.mask >> (reg)->parts->fm.shift) == 3)

struct qcom_rpm_reg {
	struct qcom_rpm *rpm;