aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/regulator
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2020-01-15 08:29:53 +0800
committerMark Brown <broonie@kernel.org>2020-01-17 15:34:31 +0000
commit53ba2f1aa3860f7ea0bf81543aab4a66af3f01d0 (patch)
tree0ccc39c81949fd06af6ea1742df746c95533bbad /drivers/regulator
parentregulator: vqmmc-ipq4019: Fix platform_no_drv_owner.cocci warnings (diff)
downloadwireguard-linux-53ba2f1aa3860f7ea0bf81543aab4a66af3f01d0.tar.xz
wireguard-linux-53ba2f1aa3860f7ea0bf81543aab4a66af3f01d0.zip
regulator: mpq7920: Fix incorrect defines
Fix defines for MPQ7920_MASK_BUCK_ILIM and MPQ7920_DISCHARGE_ON Remove unused MPQ7920_REG_REGULATOR_EN1. Signed-off-by: Axel Lin <axel.lin@ingics.com> Link: https://lore.kernel.org/r/20200115002953.14731-1-axel.lin@ingics.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/mpq7920.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/regulator/mpq7920.h b/drivers/regulator/mpq7920.h
index 1498a1e3f4f5..489924655a96 100644
--- a/drivers/regulator/mpq7920.h
+++ b/drivers/regulator/mpq7920.h
@@ -43,11 +43,10 @@
#define MPQ7920_LDO5_REG_B 0x1e
#define MPQ7920_LDO5_REG_C 0x1f
#define MPQ7920_REG_MODE 0x20
-#define MPQ7920_REG_REGULATOR_EN1 0x22
#define MPQ7920_REG_REGULATOR_EN 0x22
#define MPQ7920_MASK_VREF 0x7f
-#define MPQ7920_MASK_BUCK_ILIM 0xd0
+#define MPQ7920_MASK_BUCK_ILIM 0xc0
#define MPQ7920_MASK_LDO_ILIM BIT(6)
#define MPQ7920_MASK_DISCHARGE BIT(5)
#define MPQ7920_MASK_MODE 0xc0
@@ -57,7 +56,7 @@
#define MPQ7920_MASK_DVS_SLEWRATE 0xc0
#define MPQ7920_MASK_OVP 0x40
#define MPQ7920_OVP_DISABLE ~(0x40)
-#define MPQ7920_DISCHARGE_ON 0x1
+#define MPQ7920_DISCHARGE_ON BIT(5)
#define MPQ7920_REGULATOR_EN_OFFSET 7