Hi, On Fri, Aug 13, 2021 at 05:32:54PM +0100, Mark Brown wrote: > On Fri, Aug 13, 2021 at 06:20:29PM +0200, Sebastian Reichel wrote: > > On Fri, Aug 13, 2021 at 04:58:58PM +0100, Mark Brown wrote: > > > > We're still waiting for review from Matti on the linear ranges bit - > > > normally that goes through the regulator tree, do you have a tag to pull > > > in case of merge conflicts? > > > He actually already provided his Rb in v5, Gene did not carry it > > over properly (I added it) and the patch looks simple enough, that > > Linus will know what to do in case of a conflict. But if you insist > > I can unroll my tree and create a topic branch for this. > > It would be better, the issues I'm worrying about are more general > refactorings or whatever that create actual dependencies rather than > just trivial add/add type issues - it can make doing some kinds of work > really painful if things go via a different tree. There you go: -- Sebastian The following changes since commit e73f0f0ee7541171d89f2e2491130c7771ba58d3: Linux 5.14-rc1 (2021-07-11 15:07:40 -0700) are available in the Git repository at: ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git tags/ib-mt6360-for-5.15-signed for you to fetch changes up to 0402e8ebb8b869e375e8af7243044df21b5ff378: power: supply: mt6360_charger: add MT6360 charger support (2021-08-13 18:37:49 +0200) ---------------------------------------------------------------- Immutable branch between regulator and power-supply for for 5.15 This immutable branch introduces the MT6360 charger driver, which requires a new linear range helper. Signed-off-by: Sebastian Reichel ---------------------------------------------------------------- Gene Chen (3): lib: add linear range get selector within dt-bindings: power: Add bindings document for Charger support on MT6360 PMIC power: supply: mt6360_charger: add MT6360 charger support .../bindings/power/supply/mt6360_charger.yaml | 48 ++ drivers/power/supply/Kconfig | 11 + drivers/power/supply/Makefile | 1 + drivers/power/supply/mt6360_charger.c | 867 +++++++++++++++++++++ include/linux/linear_range.h | 2 + lib/linear_ranges.c | 31 + 6 files changed, 960 insertions(+) create mode 100644 Documentation/devicetree/bindings/power/supply/mt6360_charger.yaml create mode 100644 drivers/power/supply/mt6360_charger.c