mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-18 20:29:04 +08:00
regulator: qcom-smd: Correct set_load() unit
The set_load() op deals with uA while the SMD packets used mA, so convert as we're building the packet. Signed-off-by: Bjorn Andersson <bjorn.andersson@sonymobile.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
committed by
Mark Brown
parent
2c652a98ca
commit
a3e123c1c4
@@ -131,7 +131,7 @@ static int rpm_reg_set_load(struct regulator_dev *rdev, int load_uA)
|
||||
|
||||
req.key = cpu_to_le32(RPM_KEY_MA);
|
||||
req.nbytes = cpu_to_le32(sizeof(u32));
|
||||
req.value = cpu_to_le32(load_uA);
|
||||
req.value = cpu_to_le32(load_uA / 1000);
|
||||
|
||||
return rpm_reg_write_active(vreg, &req, sizeof(req));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user