All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Brown <davidb@codeaurora.org>
To: arm@kernel.org
Cc: Arnd Bergmann <arnd@arndb.de>, Olof Johansson <olof@lixom.net>,
	Nicolas Pitre <nicolas.pitre@linaro.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Russell King <rmk@arm.linux.org.uk>,
	linux-arm-msm@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: [GIT PULL 1/3] msm cleanups for 3.11
Date: Fri, 14 Jun 2013 10:56:53 -0700	[thread overview]
Message-ID: <1371232615-30731-2-git-send-email-davidb@codeaurora.org> (raw)
In-Reply-To: <1371232615-30731-1-git-send-email-davidb@codeaurora.org>

The following changes since commit f722406faae2d073cc1d01063d1123c35425939e:

  Linux 3.10-rc1 (2013-05-11 17:14:08 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git tags/msm-cleanup-for-3.11

for you to fetch changes up to 1aa3d1a3c7d235c47e30c7c8c6b5ef02fb1536b3:

  mfd: ssbi: Use devm_* and simplify code (2013-06-12 14:50:12 -0700)

----------------------------------------------------------------
Cleanups for MSM for 3.11

These are a handful of cleanups to the MSM tree.  The gpio cleanups
get us closer to having proper pinmux and gpio support.

----------------------------------------------------------------
Maxime Ripard (1):
      ARM: msm: Remove init_irq declaration in machine description

Rohit Vaswani (4):
      msm: Remove unused file core.h
      msm: iomap: Remove unused bases and mappings
      ARM: msm: Remove gpiomux-v2 and re-organize MSM_GPIOMUX configs
      gpio: msm: Add device tree and irqdomain support for gpio-msm-v2

Stephen Boyd (1):
      mfd: ssbi: Use devm_* and simplify code

 .../devicetree/bindings/gpio/gpio-msm.txt          |  26 +++
 arch/arm/boot/dts/msm8660-surf.dts                 |  11 ++
 arch/arm/boot/dts/msm8960-cdp.dts                  |  11 ++
 arch/arm/mach-msm/Kconfig                          |  13 +-
 arch/arm/mach-msm/Makefile                         |   6 +-
 arch/arm/mach-msm/board-dt-8660.c                  |   2 -
 arch/arm/mach-msm/board-dt-8960.c                  |   2 -
 arch/arm/mach-msm/core.h                           |   2 -
 arch/arm/mach-msm/gpiomux-8x60.c                   |  19 --
 arch/arm/mach-msm/gpiomux-v2.c                     |  25 ---
 arch/arm/mach-msm/gpiomux-v2.h                     |  61 -------
 arch/arm/mach-msm/gpiomux.c                        |  15 ++
 arch/arm/mach-msm/gpiomux.h                        |   5 -
 arch/arm/mach-msm/include/mach/msm_iomap-8960.h    |   7 -
 arch/arm/mach-msm/include/mach/msm_iomap-8x60.h    |   6 -
 arch/arm/mach-msm/include/mach/msm_iomap.h         |   2 -
 arch/arm/mach-msm/io.c                             |   4 -
 drivers/gpio/Kconfig                               |   2 +-
 drivers/gpio/gpio-msm-v2.c                         | 195 ++++++++++++---------
 drivers/ssbi/ssbi.c                                |  69 ++------
 20 files changed, 197 insertions(+), 286 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/gpio/gpio-msm.txt
 delete mode 100644 arch/arm/mach-msm/core.h
 delete mode 100644 arch/arm/mach-msm/gpiomux-8x60.c
 delete mode 100644 arch/arm/mach-msm/gpiomux-v2.c
 delete mode 100644 arch/arm/mach-msm/gpiomux-v2.h

WARNING: multiple messages have this Message-ID (diff)
From: davidb@codeaurora.org (David Brown)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 1/3] msm cleanups for 3.11
Date: Fri, 14 Jun 2013 10:56:53 -0700	[thread overview]
Message-ID: <1371232615-30731-2-git-send-email-davidb@codeaurora.org> (raw)
In-Reply-To: <1371232615-30731-1-git-send-email-davidb@codeaurora.org>

The following changes since commit f722406faae2d073cc1d01063d1123c35425939e:

  Linux 3.10-rc1 (2013-05-11 17:14:08 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git tags/msm-cleanup-for-3.11

for you to fetch changes up to 1aa3d1a3c7d235c47e30c7c8c6b5ef02fb1536b3:

  mfd: ssbi: Use devm_* and simplify code (2013-06-12 14:50:12 -0700)

----------------------------------------------------------------
Cleanups for MSM for 3.11

These are a handful of cleanups to the MSM tree.  The gpio cleanups
get us closer to having proper pinmux and gpio support.

----------------------------------------------------------------
Maxime Ripard (1):
      ARM: msm: Remove init_irq declaration in machine description

Rohit Vaswani (4):
      msm: Remove unused file core.h
      msm: iomap: Remove unused bases and mappings
      ARM: msm: Remove gpiomux-v2 and re-organize MSM_GPIOMUX configs
      gpio: msm: Add device tree and irqdomain support for gpio-msm-v2

Stephen Boyd (1):
      mfd: ssbi: Use devm_* and simplify code

 .../devicetree/bindings/gpio/gpio-msm.txt          |  26 +++
 arch/arm/boot/dts/msm8660-surf.dts                 |  11 ++
 arch/arm/boot/dts/msm8960-cdp.dts                  |  11 ++
 arch/arm/mach-msm/Kconfig                          |  13 +-
 arch/arm/mach-msm/Makefile                         |   6 +-
 arch/arm/mach-msm/board-dt-8660.c                  |   2 -
 arch/arm/mach-msm/board-dt-8960.c                  |   2 -
 arch/arm/mach-msm/core.h                           |   2 -
 arch/arm/mach-msm/gpiomux-8x60.c                   |  19 --
 arch/arm/mach-msm/gpiomux-v2.c                     |  25 ---
 arch/arm/mach-msm/gpiomux-v2.h                     |  61 -------
 arch/arm/mach-msm/gpiomux.c                        |  15 ++
 arch/arm/mach-msm/gpiomux.h                        |   5 -
 arch/arm/mach-msm/include/mach/msm_iomap-8960.h    |   7 -
 arch/arm/mach-msm/include/mach/msm_iomap-8x60.h    |   6 -
 arch/arm/mach-msm/include/mach/msm_iomap.h         |   2 -
 arch/arm/mach-msm/io.c                             |   4 -
 drivers/gpio/Kconfig                               |   2 +-
 drivers/gpio/gpio-msm-v2.c                         | 195 ++++++++++++---------
 drivers/ssbi/ssbi.c                                |  69 ++------
 20 files changed, 197 insertions(+), 286 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/gpio/gpio-msm.txt
 delete mode 100644 arch/arm/mach-msm/core.h
 delete mode 100644 arch/arm/mach-msm/gpiomux-8x60.c
 delete mode 100644 arch/arm/mach-msm/gpiomux-v2.c
 delete mode 100644 arch/arm/mach-msm/gpiomux-v2.h

  reply	other threads:[~2013-06-14 17:57 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-14 17:56 [GIT PULL 0/3] msm changes for 3.11 David Brown
2013-06-14 17:56 ` David Brown
2013-06-14 17:56 ` David Brown
2013-06-14 17:56 ` David Brown [this message]
2013-06-14 17:56   ` [GIT PULL 1/3] msm cleanups " David Brown
2013-06-15  1:21   ` Olof Johansson
2013-06-15  1:21     ` Olof Johansson
2013-06-14 17:56 ` [GIT PULL 2/3] msm fixes " David Brown
2013-06-14 17:56   ` David Brown
2013-06-14 17:56 ` David Brown
2013-06-14 17:56   ` David Brown
2013-06-15  1:26   ` Olof Johansson
2013-06-15  1:26     ` Olof Johansson
2013-06-17 20:26     ` David Brown
2013-06-17 20:26       ` David Brown
2013-06-17 20:31       ` Olof Johansson
2013-06-17 20:31         ` Olof Johansson
2013-06-14 19:52 ` [GIT PULL 3/3] msm clock " David Brown
2013-06-14 19:52   ` David Brown
2013-06-15  1:35   ` Olof Johansson
2013-06-15  1:35     ` Olof Johansson
2013-06-17 17:18     ` Stephen Boyd
2013-06-17 17:18       ` Stephen Boyd
2013-06-17 17:35       ` Olof Johansson
2013-06-17 17:35         ` Olof Johansson
2013-06-17 17:35         ` Olof Johansson
2013-06-24 21:00   ` [GIT PULL v2] " David Brown
2013-06-24 21:00     ` David Brown
2013-06-24 21:02     ` Chris Ball
2013-06-24 21:02       ` Chris Ball
2013-06-28  0:06     ` Olof Johansson
2013-06-28  0:06       ` Olof Johansson

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=1371232615-30731-2-git-send-email-davidb@codeaurora.org \
    --to=davidb@codeaurora.org \
    --cc=arm@kernel.org \
    --cc=arnd@arndb.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nicolas.pitre@linaro.org \
    --cc=olof@lixom.net \
    --cc=rmk@arm.linux.org.uk \
    --cc=tglx@linutronix.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.