Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'regulator-fix-v5.19-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator

Pull regulator fix from Mark Brown:
"One fix for an incorrect device description for MP5496"

* tag 'regulator-fix-v5.19-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator:
regulator: qcom_smd: correct MP5496 ranges

+4 -4
+4 -4
drivers/regulator/qcom_smd-regulator.c
··· 723 723 724 724 static const struct regulator_desc mp5496_smpa2 = { 725 725 .linear_ranges = (struct linear_range[]) { 726 - REGULATOR_LINEAR_RANGE(725000, 0, 27, 12500), 726 + REGULATOR_LINEAR_RANGE(600000, 0, 127, 12500), 727 727 }, 728 728 .n_linear_ranges = 1, 729 - .n_voltages = 28, 729 + .n_voltages = 128, 730 730 .ops = &rpm_mp5496_ops, 731 731 }; 732 732 733 733 static const struct regulator_desc mp5496_ldoa2 = { 734 734 .linear_ranges = (struct linear_range[]) { 735 - REGULATOR_LINEAR_RANGE(1800000, 0, 60, 25000), 735 + REGULATOR_LINEAR_RANGE(800000, 0, 127, 25000), 736 736 }, 737 737 .n_linear_ranges = 1, 738 - .n_voltages = 61, 738 + .n_voltages = 128, 739 739 .ops = &rpm_mp5496_ops, 740 740 }; 741 741