mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Samuel Ortiz <sameo@linux.intel.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel <linux-kernel@vger.kernel.org>,
	AnilKumar Ch <anilkumar@ti.com>,
	Chanwoo Choi <cw00.choi@samsung.com>,
	Feng Tang <feng.tang@intel.com>,
	Mark Brown <broonie@opensource.wolfsonmicro.com>
Subject: [GIT] [3.6] MFD fixes
Date: Sun, 16 Sep 2012 17:26:36 +0200	[thread overview]
Message-ID: <20120916152636.GJ3647@sortiz-mobl> (raw)

Hi Linus,

Those are the pending MFD fixes for 3.6. The stats don't look that nice
because we had to extend an MFD API and fix all the callers from the MFD
directory.

We have 5 pending fixes:

- A tps65217 build error fix.
- A lcp_ich regression fix caused by the MFD driver failing to initialize the
  watchdog sub device due to ACPI conflicts.
- 2 MAX77693 interrupt handling bug fixes.
- An MFD core fix, adding an IRQ domain argument to the MFD device addition
  API in order to prevent silent and potentially harmful remapping behaviour
  changes for drivers supporting non-DT platforms.

Thanks in advance for pulling them in.

The following changes since commit d9875690d9b89a866022ff49e3fcea892345ad92:

  Linux 3.6-rc2 (2012-08-16 14:51:24 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git tags/mfd-for-linus-3.6-2

for you to fetch changes up to b186b12487efc80c44f2f0d26cc26eb249cf1524:

  mfd: MAX77693: Fix NULL pointer error when initializing irqs (2012-09-16 00:33:09 +0200)

----------------------------------------------------------------
This is the remaining MFD fixes for 3.6, with 5 pending fixes:

- A tps65217 build error fix.
- A lcp_ich regression fix caused by the MFD driver failing to initialize the
  watchdog sub device due to ACPI conflicts.
- 2 MAX77693 interrupt handling bug fixes.
- An MFD core fix, adding an IRQ domain argument to the MFD device addition
  API in order to prevent silent and potentially harmful remapping behaviour
  changes for drivers supporting non-DT platforms.

----------------------------------------------------------------
AnilKumar Ch (1):
      mfd: Move tps65217 regulator plat data handling to regulator

Chanwoo Choi (2):
      mfd: MAX77693: Fix interrupt handling bug
      mfd: MAX77693: Fix NULL pointer error when initializing irqs

Feng Tang (1):
      mfd: lpc_ich: Fix a 3.5 kernel regression for iTCO_wdt driver

Mark Brown (1):
      mfd: core: Push irqdomain mapping out into devices

 drivers/extcon/extcon-max77693.c       |   19 +++--
 drivers/mfd/88pm800.c                  |    5 +-
 drivers/mfd/88pm805.c                  |    3 +-
 drivers/mfd/88pm860x-core.c            |   21 +++---
 drivers/mfd/aat2870-core.c             |    2 +-
 drivers/mfd/ab3100-core.c              |    2 +-
 drivers/mfd/ab8500-core.c              |   10 +--
 drivers/mfd/arizona-core.c             |    6 +-
 drivers/mfd/asic3.c                    |    6 +-
 drivers/mfd/cs5535-mfd.c               |    2 +-
 drivers/mfd/da9052-core.c              |    2 +-
 drivers/mfd/davinci_voicecodec.c       |    2 +-
 drivers/mfd/db8500-prcmu.c             |    2 +-
 drivers/mfd/htc-pasic3.c               |    5 +-
 drivers/mfd/intel_msic.c               |    4 +-
 drivers/mfd/janz-cmodio.c              |    2 +-
 drivers/mfd/jz4740-adc.c               |    3 +-
 drivers/mfd/lm3533-core.c              |    7 +-
 drivers/mfd/lpc_ich.c                  |   24 +-----
 drivers/mfd/lpc_sch.c                  |    6 +-
 drivers/mfd/max77686.c                 |    2 +-
 drivers/mfd/max77693-irq.c             |   36 +++++++--
 drivers/mfd/max77693.c                 |   16 +++-
 drivers/mfd/max8925-core.c             |   12 +--
 drivers/mfd/max8997.c                  |    2 +-
 drivers/mfd/max8998.c                  |    8 +-
 drivers/mfd/mc13xxx-core.c             |    2 +-
 drivers/mfd/mfd-core.c                 |   12 +--
 drivers/mfd/palmas.c                   |    3 +-
 drivers/mfd/rc5t583.c                  |    2 +-
 drivers/mfd/rdc321x-southbridge.c      |    3 +-
 drivers/mfd/sec-core.c                 |    8 +-
 drivers/mfd/sta2x11-mfd.c              |    4 +-
 drivers/mfd/stmpe.c                    |    2 +-
 drivers/mfd/t7l66xb.c                  |    2 +-
 drivers/mfd/tc3589x.c                  |    8 +-
 drivers/mfd/tc6387xb.c                 |    2 +-
 drivers/mfd/tc6393xb.c                 |    4 +-
 drivers/mfd/ti-ssp.c                   |    2 +-
 drivers/mfd/timberdale.c               |   12 +--
 drivers/mfd/tps6105x.c                 |    2 +-
 drivers/mfd/tps6507x.c                 |    2 +-
 drivers/mfd/tps65090.c                 |    2 +-
 drivers/mfd/tps65217.c                 |  130 +++++++++++---------------------
 drivers/mfd/tps6586x.c                 |    3 +-
 drivers/mfd/tps65910.c                 |    2 +-
 drivers/mfd/tps65912-core.c            |    2 +-
 drivers/mfd/twl4030-audio.c            |    2 +-
 drivers/mfd/twl6040-core.c             |    2 +-
 drivers/mfd/vx855.c                    |    2 +-
 drivers/mfd/wl1273-core.c              |    2 +-
 drivers/mfd/wm831x-core.c              |   16 ++--
 drivers/mfd/wm8400-core.c              |    2 +-
 drivers/mfd/wm8994-core.c              |    4 +-
 drivers/regulator/tps65217-regulator.c |  124 ++++++++++++++++++++++++++----
 drivers/staging/nvec/nvec.c            |    2 +-
 include/linux/mfd/core.h               |    4 +-
 include/linux/mfd/tps65217.h           |   12 ++-
 58 files changed, 343 insertions(+), 247 deletions(-)



-- 
Intel Open Source Technology Centre
http://oss.intel.com/

                 reply	other threads:[~2012-09-16 15:26 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20120916152636.GJ3647@sortiz-mobl \
    --to=sameo@linux.intel.com \
    --cc=anilkumar@ti.com \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=cw00.choi@samsung.com \
    --cc=feng.tang@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --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

all inboxes | Powered by JetHome®