The following changes since commit 6f7da290413ba713f0cdd9ff1a2a9bb129ef4f6c: Linux 4.12 (2017-07-02 16:07:02 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git tags/regulator-v4.13 for you to fetch changes up to 8d67f64f7739464c352d4b167ed1748f3b2c1f44: Merge remote-tracking branches 'regulator/topic/settle', 'regulator/topic/tps65910' and 'regulator/topic/tps65917' into regulator-next (2017-07-03 16:52:21 +0100) ---------------------------------------------------------------- regulator: Updates for v4.13 A quiet release for the regulator API, a series of fairly small fixes plus one new feature and a few new drivers: - Support for regulators with different settling times for rising and falling voltage changes. - New drivers for Allwinner AXP803, HiSilicon HI6421V530 and TI LP87565. ---------------------------------------------------------------- Axel Lin (1): regulator: bd9571mwv: Statize local symbols Charles Keepax (1): regulator: core: Prioritise consumer mappings over regulator name Colin Ian King (1): regulator: lp8755: fix spelling mistake "acceess" -> "access" Guodong Xu (2): regulator: hi6421: Describe consumed platform device regulator: hi6421v530: Describe consumed platform device Haishan Zhou (1): regulator: core: Fix size limit of supply_map Icenowy Zheng (1): regulator: axp20x-regulator: add support for AXP803 Javier Martinez Canillas (1): MAINTAINERS: Update MAX77802 PMIC entry Julia Lawall (1): regulator: palmas: Drop unnecessary static Keerthy (4): regulator: lp87565: Add support for lp87565 PMIC regulators regulator: tps65917: Add support for SMPS12 regulator: lp87565: Fix the GPL header regulator: lp87565: Fix the initial voltage range Mark Brown (6): Merge remote-tracking branch 'regulator/fix/core' into regulator-linus Merge remote-tracking branch 'regulator/fix/max77802' into regulator-linus Merge remote-tracking branch 'regulator/topic/core' into regulator-next Merge remote-tracking branches 'regulator/topic/axp20x', 'regulator/topic/bd9571mwv', 'regulator/topic/da9061' and 'regulator/topic/hi6421' into regulator-next Merge remote-tracking branches 'regulator/topic/hi6421v530', 'regulator/topic/lp8755', 'regulator/topic/lp87565', 'regulator/topic/max8997' and 'regulator/topic/palmas' into regulator-next Merge remote-tracking branches 'regulator/topic/settle', 'regulator/topic/tps65910' and 'regulator/topic/tps65917' into regulator-next Matthias Kaehlcke (2): regulator: DT: Add properties for asymmetric settling times regulator: Allow for asymmetric settling times Michał Mirosław (2): regulator: tps65910: check TPS65910_NUM_REGS at build time regulator: tps65910: wire up sleep control configuration MyungJoo Ham (1): regulator: max8997/8966: fix charger cv voltage set bug Steve Twiss (1): regulator: da9061: BUCK and LDO regulator driver Tirupathi Reddy (1): regulator: core: Fix voltage change propagations to supply regulators Wang Xiaoyin (1): regulator: hi6421v530: add driver for hi6421v530 voltage regulator Documentation/devicetree/bindings/mfd/tps65910.txt | 4 + .../devicetree/bindings/regulator/regulator.txt | 8 + MAINTAINERS | 6 +- drivers/mfd/tps65910.c | 22 +- drivers/regulator/Kconfig | 22 +- drivers/regulator/Makefile | 2 + drivers/regulator/axp20x-regulator.c | 153 +++++++++-- drivers/regulator/bd9571mwv-regulator.c | 12 +- drivers/regulator/core.c | 55 ++-- drivers/regulator/da9062-regulator.c | 303 ++++++++++++++++++++- drivers/regulator/hi6421-regulator.c | 7 + drivers/regulator/hi6421v530-regulator.c | 214 +++++++++++++++ drivers/regulator/lp8755.c | 14 +- drivers/regulator/lp87565-regulator.c | 236 ++++++++++++++++ drivers/regulator/max8997-regulator.c | 9 +- drivers/regulator/of_regulator.c | 19 ++ drivers/regulator/palmas-regulator.c | 20 +- drivers/regulator/tps65910-regulator.c | 5 +- include/linux/mfd/axp20x.h | 37 +++ include/linux/mfd/palmas.h | 2 + include/linux/mfd/tps65910.h | 2 +- include/linux/regulator/machine.h | 6 + 22 files changed, 1057 insertions(+), 101 deletions(-) create mode 100644 drivers/regulator/hi6421v530-regulator.c create mode 100644 drivers/regulator/lp87565-regulator.c