mbox

[GIT,PULL] late omap mailbox clean-up, driver parts

Message ID 20140729113917.GP29045@atomide.com
State New
Headers show

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.17/mailbox-cleanup

Message

Tony Lindgren July 29, 2014, 11:39 a.m. UTC
The following changes since commit cbf14f3ab9bd6295b345fc812f08ddd844fb183e:

  ARM: AM33xx: hwmod_data: Remove legacy mailbox addrs (2014-07-15 05:08:56 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.17/mailbox-cleanup

for you to fetch changes up to 72c1c8179cdc5ba7208d375bd3f104659fc50ad0:

  mailbox/omap: add a parent structure for every IP instance (2014-07-29 01:57:25 -0700)

----------------------------------------------------------------
Driver specific omap mailbox cleanup. Mostly to remove
broken legacy code for omap1 and move things towards
device tree.

These patches were posted a while back, but I did not
realize I was supposed to merge the driver related
parts too. So apologies for a late pull request on
these changes.

----------------------------------------------------------------

Note that these are based on the SoC related changes already
pulled.

----------------------------------------------------------------

Suman Anna (7):
      mailbox/omap: use devm_* interfaces
      mailbox/omap: remove OMAP1 mailbox driver
      mailbox/omap: remove omap_mbox_type_t from mailbox ops
      mailbox/omap: simplify the fifo assignment by using macros
      mailbox/omap: consolidate OMAP mailbox driver
      mailbox/omap: remove the private mailbox structure
      mailbox/omap: add a parent structure for every IP instance

 arch/arm/configs/omap1_defconfig |   2 -
 drivers/mailbox/Kconfig          |  19 +-
 drivers/mailbox/Makefile         |   6 +-
 drivers/mailbox/mailbox-omap1.c  | 203 ------------------
 drivers/mailbox/mailbox-omap2.c  | 357 -------------------------------
 drivers/mailbox/omap-mailbox.c   | 444 +++++++++++++++++++++++++++++++--------
 drivers/mailbox/omap-mbox.h      |  67 ------
 7 files changed, 360 insertions(+), 738 deletions(-)
 delete mode 100644 drivers/mailbox/mailbox-omap1.c
 delete mode 100644 drivers/mailbox/mailbox-omap2.c
 delete mode 100644 drivers/mailbox/omap-mbox.h

Comments

Arnd Bergmann July 29, 2014, 3:36 p.m. UTC | #1
On Tuesday 29 July 2014 04:39:18 Tony Lindgren wrote:
> The following changes since commit cbf14f3ab9bd6295b345fc812f08ddd844fb183e:
> 
>   ARM: AM33xx: hwmod_data: Remove legacy mailbox addrs (2014-07-15 05:08:56 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.17/mailbox-cleanup
> 
> for you to fetch changes up to 72c1c8179cdc5ba7208d375bd3f104659fc50ad0:
> 
>   mailbox/omap: add a parent structure for every IP instance (2014-07-29 01:57:25 -0700)
> 
> ----------------------------------------------------------------
> Driver specific omap mailbox cleanup. Mostly to remove
> broken legacy code for omap1 and move things towards
> device tree.
> 
> These patches were posted a while back, but I did not
> realize I was supposed to merge the driver related
> parts too. So apologies for a late pull request on
> these changes.

Ok, I see. I've merged them into next/drivers now, after first merging in the
first half of the series that we have in the next/soc branch.

	Arnd