LKML Archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] power supply changes for 4.2
@ 2015-06-23  0:53 Sebastian Reichel
  2015-06-23 23:13 ` Linus Torvalds
  0 siblings, 1 reply; 3+ messages in thread
From: Sebastian Reichel @ 2015-06-23  0:53 UTC (permalink / raw
  To: Linus Torvalds; +Cc: linux-kernel, linux-pm

[-- Attachment #1: Type: text/plain, Size: 6216 bytes --]

Hi Linus,

The following changes since commit e26081808edadfd257c6c9d81014e3b25e9a6118:

  Linux 4.1-rc4 (2015-05-18 10:13:47 -0700)

are available in the git repository at:

  git://git.infradead.org/battery-2.6.git tags/for-4.2

for you to fetch changes up to 43df61051ab9af985ec439ee9be9c299e7de34e8:

  power_supply: Correct kerneldoc copy paste errors (2015-06-19 14:21:01 +0200)

----------------------------------------------------------------
power supply and reset changes for the v4.2 series

 * New charger drivers: BQ24257, BQ25890, AXP288, RT9455
 * MAX17042 battery: add health & temperature support
 * BQ2415x charger: add ACPI support
 * misc. fixes and cleanups

----------------------------------------------------------------
Anda-Maria Nicolae (7):
      power_supply: bq2415x_charger: Fix coding style issues
      power_supply: bq2415x_charger: Add ACPI support
      of: Add vendor prefix for Richtek Technology Corporation
      Documentation: devicetree: Add Richtek RT9455 bindings
      power_supply: Add support for Richtek RT9455 battery charger
      power_supply: rt9455_charger: Check if CONFIG_USB_PHY is enabled
      power_supply: rt9455_charger: Fix error reported by static analysis tool

Bjorn Andersson (1):
      power_supply: Correct kerneldoc copy paste errors

Frans Klaver (1):
      sbs-battery: add option to always register battery

Hans de Goede (1):
      power: Add devm_power_supply_get_by_phandle() helper function

Heiko Stübner (1):
      power: reset: gpio-restart: increase priority slightly

Krzysztof Kozlowski (8):
      power_supply: Fix NULL pointer dereference during bq27x00_battery probe
      power_supply: Fix possible NULL pointer dereference on early uevent
      power: axp288_fuel_gauge: Constify platform_device_id
      power: at91-reset: Constify platform_device_id
      power_supply: Use wrappers to avoid races when registering power supply
      power_supply: charger-manager: Add parent for power supply
      power_supply: sysfs: Bring back write to writeable properties
      power_supply: max17042: Add OF support for setting thresholds

Laurentiu Palcu (4):
      power_supply: Add TI BQ24257 charger driver
      Documentation: devicetree: Add TI BQ25890 bindings
      power_supply: Add support for TI BQ25890 charger chip
      power_supply: bq25890: make chip_id int

Ramakrishna Pallala (2):
      power: max17042_battery: add HEALTH and TEMP_* properties support
      power: axp288_charger: axp288 charger driver

Takeshi Yoshimura (2):
      power_supply: 88pm860x_charger: Do not call free_irq() twice
      wm831x_power: Fix off-by-one at free_irq()

Thomas Elste (1):
      power: bq24190_charger: Change first_time flag reset condition

Uwe Kleine-König (4):
      power: reset: gpio-poweroff: let devm_gpiod_get set direction of gpio
      power: reset: ltc2952: use _optional variant of devm_gpiod_get
      power_supply: bq25890: use flags argument of devm_gpiod_get
      power_supply: bq24257: use flags argument of devm_gpiod_get

 Documentation/devicetree/bindings/power/bq24257.txt                 |   21 ++
 Documentation/devicetree/bindings/power/bq25890.txt                 |   46 +++
 Documentation/devicetree/bindings/power/rt9455_charger.txt          |   48 +++
 Documentation/devicetree/bindings/power_supply/max17042_battery.txt |   13 +
 Documentation/devicetree/bindings/vendor-prefixes.txt               |    1 +
 drivers/power/88pm860x_charger.c                                    |    1 -
 drivers/power/Kconfig                                               |   28 ++
 drivers/power/Makefile                                              |    4 +
 drivers/power/axp288_charger.c                                      |  941 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/power/axp288_fuel_gauge.c                                   |    2 +-
 drivers/power/bq2415x_charger.c                                     |   94 ++++--
 drivers/power/bq24190_charger.c                                     |   11 +-
 drivers/power/bq24257_charger.c                                     |  858 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/power/bq25890_charger.c                                     |  994 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/power/charger-manager.c                                     |    3 +-
 drivers/power/max17042_battery.c                                    |  199 +++++++++++-
 drivers/power/power_supply_core.c                                   |  106 ++++++-
 drivers/power/power_supply_leds.c                                   |    4 +-
 drivers/power/power_supply_sysfs.c                                  |    4 +-
 drivers/power/reset/at91-reset.c                                    |    2 +-
 drivers/power/reset/gpio-poweroff.c                                 |   25 +-
 drivers/power/reset/gpio-restart.c                                  |    2 +-
 drivers/power/reset/ltc2952-poweroff.c                              |    7 +-
 drivers/power/rt9455_charger.c                                      | 1752 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/power/sbs-battery.c                                         |   21 +-
 drivers/power/wm831x_power.c                                        |    1 +
 include/linux/mfd/axp20x.h                                          |    7 +
 include/linux/power/max17042_battery.h                              |    4 +
 include/linux/power_supply.h                                        |   11 +
 29 files changed, 5122 insertions(+), 88 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/power/bq24257.txt
 create mode 100644 Documentation/devicetree/bindings/power/bq25890.txt
 create mode 100644 Documentation/devicetree/bindings/power/rt9455_charger.txt
 create mode 100644 drivers/power/axp288_charger.c
 create mode 100644 drivers/power/bq24257_charger.c
 create mode 100644 drivers/power/bq25890_charger.c
 create mode 100644 drivers/power/rt9455_charger.c

-- Sebastian

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] power supply changes for 4.2
  2015-06-23  0:53 [GIT PULL] power supply changes for 4.2 Sebastian Reichel
@ 2015-06-23 23:13 ` Linus Torvalds
  2015-06-24  4:48   ` Sebastian Reichel
  0 siblings, 1 reply; 3+ messages in thread
From: Linus Torvalds @ 2015-06-23 23:13 UTC (permalink / raw
  To: Sebastian Reichel; +Cc: Linux Kernel Mailing List, linux-pm@vger.kernel.org

On Mon, Jun 22, 2015 at 5:53 PM, Sebastian Reichel <sre@ring0.de> wrote:
>
>   git://git.infradead.org/battery-2.6.git tags/for-4.2

So I started wondering. Why do you use infradead for one of your
trees, but git.kernel.org for the other (the HSI one)? That just looks
odd to me.

Also, something in your HSI pull request made gmail unhappy, and it
marked it as spam. Do you send the emails differently too?

                Linus

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] power supply changes for 4.2
  2015-06-23 23:13 ` Linus Torvalds
@ 2015-06-24  4:48   ` Sebastian Reichel
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastian Reichel @ 2015-06-24  4:48 UTC (permalink / raw
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List, linux-pm@vger.kernel.org

[-- Attachment #1: Type: text/plain, Size: 795 bytes --]

Hi,

On Tue, Jun 23, 2015 at 04:13:34PM -0700, Linus Torvalds wrote:
> On Mon, Jun 22, 2015 at 5:53 PM, Sebastian Reichel <sre@ring0.de> wrote:
> >
> >   git://git.infradead.org/battery-2.6.git tags/for-4.2
> 
> So I started wondering. Why do you use infradead for one of your
> trees, but git.kernel.org for the other (the HSI one)?
>
> That just looks odd to me.

Since I simply took over the existing repository for the power
supply subsystem (commit ad8464a2f31a54560b17d5fc6b1cca5fa68de83d).
This was not possible for the HSI subsystem, so I used
git.kernel.org infrastructure.

> Also, something in your HSI pull request made gmail unhappy, and
> it marked it as spam. Do you send the emails differently too?

No, both mails were sent in the same way.

-- Sebastian

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-06-24  4:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-23  0:53 [GIT PULL] power supply changes for 4.2 Sebastian Reichel
2015-06-23 23:13 ` Linus Torvalds
2015-06-24  4:48   ` Sebastian Reichel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).