linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Anton Vorontsov <cbouatmailru@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	David Woodhouse <dwmw2@infradead.org>,
	Stephen Rothwell <sfr@canb.auug.org.au>,
	linux-kernel@vger.kernel.org
Subject: [GIT PULL] battery-2.6.git
Date: Sat, 31 Mar 2012 00:50:19 +0400	[thread overview]
Message-ID: <20120330205018.GA32753@lizard> (raw)

Hello Linus,

Sorry for the delayed pull request, I hope it's too late though.
(And my gpg key is still not signed by anyone; couldn't find anyone
near me, heh.)

Anyway, here is the formal pull request:

The following changes since commit 6b21d18ed50c7d145220b0724ea7f2613abf0f95:

  Linux 3.3-rc5 (2012-02-25 12:18:16 -0800)

are available in the git repository at:

  git://git.infradead.org/battery-2.6.git tags/for-v3.4-rc1

for you to fetch changes up to 5cdd4d7fa5424f2018193a0c2af3bef9036c973e:

  max17042_battery: Clean up interrupt handling (2012-03-26 20:41:29 +0400)

----------------------------------------------------------------
Various small bugfixes and enhancements, plus two new drivers:

- A quite complex ab8500 charger driver, submitted by
  Arun Murthy @ ST-Ericsson;
- Summit Microelectronics SMB347 Battery Charger, submitted by
  Bruce E. Robertson and Alan Cox @ Intel.

And that's all.

----------------------------------------------------------------
Anton Vorontsov (9):
      ab8500_charger: Convert to the new USB OTG calls
      ab8500_btemp: Get rid of 'enum adc_therm'
      ab8500_fg: Get rid of 'struct v_to_cap'
      ab8500_fg: Get rid of 'struct battery_type'
      ab8500_fg: Fix copy-paste error
      ab8500: Turn unneeded global symbols into local ones
      charger-manager: Simplify charger_get_property(), get rid of a warning
      ab8500_fg: Fix some build warnings on x86_64
      Revert "max8998_charger: Include linux/module.h just once"

Arun Murthy (4):
      abx500-chargalg: Add abx500 charging algorithm
      ab8500-charger: AB8500 charger driver
      ab8500-fg: A8500 fuel gauge driver
      ab8500-btemp: AB8500 battery temperature driver

Axel Lin (6):
      da9052-battery: Add missing platform_set_drvdata
      da9052-battery: Fix a memory leak when unload the module
      da9052-battery: Convert to use module_platform_driver
      charger-manager: Clean up for better readability
      lp8727_charger: Add MODULE_DEVICE_TABLE
      power_supply: Convert i2c drivers to module_i2c_driver

Bruce E. Robertson (1):
      Add I2C driver for Summit Microelectronics SMB347 Battery Charger.

Dirk Brandewie (2):
      max17042: Align register definitions with data sheet and init appnote
      max17042: Change capacity property to use reported SOC register

Felipe Contreras (1):
      isp1704_charger: Fix probe error path

Jesper Juhl (1):
      max8998_charger: Include linux/module.h just once

Karol Lewandowski (2):
      max17042_battery: Use devm_kzalloc() where applicable
      max17042_battery: Make it possible to instantiate driver from DT

Kim, Milo (6):
      lp8727_charger: Add company name and description
      lp8727_charger: Add error check routine on probe()
      lp8727_charger: Change i2c functions
      lp8727_charger: Fix wrong code style
      lp8727_charger: Add description of platform data
      lp8727_charger: Correct typos on the comment

MyungJoo Ham (1):
      max17042_battery: Fix CHARGE_FULL representation.

Ramakrishna Pallala (3):
      max17042: Add POR init procedure from Maxim appnote
      max17042: Add support for signalling change in SOC
      max17042_battery: Clean up interrupt handling

 .../bindings/power_supply/max17042_battery.txt     |   18 +
 drivers/power/Kconfig                              |   21 +-
 drivers/power/Makefile                             |    2 +
 drivers/power/ab8500_btemp.c                       | 1124 ++++++++
 drivers/power/ab8500_charger.c                     | 2789 ++++++++++++++++++++
 drivers/power/ab8500_fg.c                          | 2637 ++++++++++++++++++
 drivers/power/abx500_chargalg.c                    | 1921 ++++++++++++++
 drivers/power/charger-manager.c                    |   67 +-
 drivers/power/da9052-battery.c                     |   15 +-
 drivers/power/ds2782_battery.c                     |   13 +-
 drivers/power/isp1704_charger.c                    |    1 +
 drivers/power/lp8727_charger.c                     |  131 +-
 drivers/power/max17040_battery.c                   |   13 +-
 drivers/power/max17042_battery.c                   |  508 +++-
 drivers/power/sbs-battery.c                        |   13 +-
 drivers/power/smb347-charger.c                     | 1294 +++++++++
 drivers/power/z2_battery.c                         |   14 +-
 include/linux/lp8727.h                             |   18 +-
 include/linux/mfd/abx500.h                         |  273 ++
 include/linux/mfd/abx500/ab8500-bm.h               |  474 ++++
 include/linux/mfd/abx500/ux500_chargalg.h          |   38 +
 include/linux/power/max17042_battery.h             |   93 +-
 include/linux/power/smb347-charger.h               |  117 +
 23 files changed, 11388 insertions(+), 206 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/power_supply/max17042_battery.txt
 create mode 100644 drivers/power/ab8500_btemp.c
 create mode 100644 drivers/power/ab8500_charger.c
 create mode 100644 drivers/power/ab8500_fg.c
 create mode 100644 drivers/power/abx500_chargalg.c
 create mode 100644 drivers/power/smb347-charger.c
 create mode 100644 include/linux/mfd/abx500/ab8500-bm.h
 create mode 100644 include/linux/mfd/abx500/ux500_chargalg.h
 create mode 100644 include/linux/power/smb347-charger.h

             reply	other threads:[~2012-03-30 20:51 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-30 20:50 Anton Vorontsov [this message]
  -- strict thread matches above, loose matches on Subject: below --
2014-01-21 17:54 [GIT PULL] battery-2.6.git Dmitry Eremin-Solenikov
2014-01-03  9:27 Anton Vorontsov
2013-11-18  2:08 Anton Vorontsov
2013-09-11  5:24 Anton Vorontsov
2013-07-09  1:39 Anton Vorontsov
2013-05-25 22:23 Anton Vorontsov
2013-05-25 23:23 ` David Woodhouse
2013-05-25 22:39   ` Anton Vorontsov
2013-04-30  5:14 Anton Vorontsov
2013-02-19  7:09 Anton Vorontsov
2012-12-12 10:22 Anton Vorontsov
2012-10-05  3:04 Anton Vorontsov
2012-07-31 13:05 Anton Vorontsov
2012-05-31  1:08 Anton Vorontsov
2012-05-31  1:17 ` Stephen Rothwell
2012-05-31 19:13 ` Linus Torvalds
2012-01-11  0:31 Anton Vorontsov
2011-07-31 10:40 Anton Vorontsov
2011-05-27 10:54 Anton Vorontsov
2011-05-27 11:10 ` David Woodhouse
2011-05-27 12:45   ` Anton Vorontsov
2011-03-24 14:58 Anton Vorontsov
2011-01-14 15:43 Anton Vorontsov
2010-10-26 14:41 Anton Vorontsov
2010-08-11  5:17 Anton Vorontsov
2010-05-24 22:28 [Regression] Commit "power_supply: Use attribute groups" breaks KDE battery monitor on openSUSE 11.3 M6 Rafael J. Wysocki
2010-05-25  0:20 ` Rafael J. Wysocki
2010-05-25  0:47   ` Daniel Mack
2010-05-25  0:55     ` Rafael J. Wysocki
2010-05-25  7:08       ` Daniel Mack
2010-05-25 10:27         ` [GIT PULL] battery-2.6.git Anton Vorontsov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120330205018.GA32753@lizard \
    --to=cbouatmailru@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=dwmw2@infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sfr@canb.auug.org.au \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 NNTP newsgroup(s).