All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kevin Hilman <khilman@ti.com>
To: Tony Lindgren <tony@atomide.com>
Cc: Arnd Bergmann <arnd@arndb.de>,
	linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org,
	Nicolas Pitre <nico@fluxnic.net>,
	Thomas Gleixner <tglx@linutronix.de>
Subject: Re: Remaining omap pull requests
Date: Tue, 02 Aug 2011 17:06:26 -0700	[thread overview]
Message-ID: <4E389102.1050302@ti.com> (raw)
In-Reply-To: <4E3884EE.3070507@ti.com>

On 08/02/2011 04:14 PM, Kevin Hilman wrote:
[...]
>>
>> Looks like I forgot the i2c driver changes that also should be
>> merged by us. Those are acked by Ben Dooks, Kevin's pull request
>> for that is at:
>>
>> http://marc.info/?l=linux-omap&m=131014213007667&w=2
>>
>
> I thought this was already pulled, but looking now I see that this was
> never pulled into the arm-soc tree.
>
> Can you pull this for v3.1 please?

Oops, I had to rebase this branch as Paul had picked up a few of these 
patches for his fixes (which are now part of arm-soc/next/fixes2.) 
Updated pull request below.

Also, I noticed there's a minor conflict with something coming from the
trivial tree[1].

Kevin

The following changes since commit 6d3c55fd4f0f94a9455d30df9414ddb0f755f402:

   OMAP: hwmod: fix the i2c-reset timeout during bootup (2011-07-10 
05:27:16 -0600)

are available in the git repository at:
 
git://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap-pm.git 
for_3.1/i2c-andy-2

Andy Green (12):
       I2C: OMAP2+: Name registers in I2C IP V2 only accordingly
       I2C: OMAP: add rev to omap i2c platform data
       I2C: OMAP1: set IP revision in platform data
       I2C: OMAP2+: Pass hwmod rev knowledge via platform_data when i2c 
bus added
       I2C: OMAP2+: use platform_data ip revision to select register map
       I2C: OMAP2+: Solve array bounds overflow error on i2c idle
       I2C: OMAP2+: address confused probed version naming
       I2C: OMAP1/OMAP2+: add flags field to omap i2c platform data
       I2C: OMAP2+: Pass flags up to omap i2c platform_data as well
       I2C: OMAP1: set i2c unit feature implementation flags in platform 
data
       I2C: OMAP2+: Convert omap I2C driver to use feature 
implementation flags from platform data
       I2C: OMAP1/OMAP2+: prepend I2C IP version to probed version shown 
in dev_info

  arch/arm/plat-omap/i2c.c      |   27 +++++++++++
  drivers/i2c/busses/i2c-omap.c |  100 
++++++++++++++++++++++------------------
  include/linux/i2c-omap.h      |    2 +
  3 files changed, 84 insertions(+), 45 deletions(-)


[1]
commit 32575a9183c82a5ea0f9ed1bcf13c17189ea1118
Author: Jesper Juhl <jj@chaosbits.net>
Date:   Sat Jul 9 23:20:42 2011 +0200

     drivers/i2c: static should be at beginning of declaration

     Make sure that the 'static' keywork is at the beginning of declaration
     for drivers/i2c/busses/i2c-omap.c

     This gets rid of warnings like
       warning: ‘static’ is not at beginning of declaration
     when building with -Wold-style-declaration (and/or -Wextra which also
     enables it).

     Signed-off-by: Jesper Juhl <jj@chaosbits.net>
     Signed-off-by: Jiri Kosina <jkosina@suse.cz>
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: khilman@ti.com (Kevin Hilman)
To: linux-arm-kernel@lists.infradead.org
Subject: Remaining omap pull requests
Date: Tue, 02 Aug 2011 17:06:26 -0700	[thread overview]
Message-ID: <4E389102.1050302@ti.com> (raw)
In-Reply-To: <4E3884EE.3070507@ti.com>

On 08/02/2011 04:14 PM, Kevin Hilman wrote:
[...]
>>
>> Looks like I forgot the i2c driver changes that also should be
>> merged by us. Those are acked by Ben Dooks, Kevin's pull request
>> for that is at:
>>
>> http://marc.info/?l=linux-omap&m=131014213007667&w=2
>>
>
> I thought this was already pulled, but looking now I see that this was
> never pulled into the arm-soc tree.
>
> Can you pull this for v3.1 please?

Oops, I had to rebase this branch as Paul had picked up a few of these 
patches for his fixes (which are now part of arm-soc/next/fixes2.) 
Updated pull request below.

Also, I noticed there's a minor conflict with something coming from the
trivial tree[1].

Kevin

The following changes since commit 6d3c55fd4f0f94a9455d30df9414ddb0f755f402:

   OMAP: hwmod: fix the i2c-reset timeout during bootup (2011-07-10 
05:27:16 -0600)

are available in the git repository at:
 
git://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap-pm.git 
for_3.1/i2c-andy-2

Andy Green (12):
       I2C: OMAP2+: Name registers in I2C IP V2 only accordingly
       I2C: OMAP: add rev to omap i2c platform data
       I2C: OMAP1: set IP revision in platform data
       I2C: OMAP2+: Pass hwmod rev knowledge via platform_data when i2c 
bus added
       I2C: OMAP2+: use platform_data ip revision to select register map
       I2C: OMAP2+: Solve array bounds overflow error on i2c idle
       I2C: OMAP2+: address confused probed version naming
       I2C: OMAP1/OMAP2+: add flags field to omap i2c platform data
       I2C: OMAP2+: Pass flags up to omap i2c platform_data as well
       I2C: OMAP1: set i2c unit feature implementation flags in platform 
data
       I2C: OMAP2+: Convert omap I2C driver to use feature 
implementation flags from platform data
       I2C: OMAP1/OMAP2+: prepend I2C IP version to probed version shown 
in dev_info

  arch/arm/plat-omap/i2c.c      |   27 +++++++++++
  drivers/i2c/busses/i2c-omap.c |  100 
++++++++++++++++++++++------------------
  include/linux/i2c-omap.h      |    2 +
  3 files changed, 84 insertions(+), 45 deletions(-)


[1]
commit 32575a9183c82a5ea0f9ed1bcf13c17189ea1118
Author: Jesper Juhl <jj@chaosbits.net>
Date:   Sat Jul 9 23:20:42 2011 +0200

     drivers/i2c: static should be at beginning of declaration

     Make sure that the 'static' keywork is at the beginning of declaration
     for drivers/i2c/busses/i2c-omap.c

     This gets rid of warnings like
       warning: ?static? is not at beginning of declaration
     when building with -Wold-style-declaration (and/or -Wextra which also
     enables it).

     Signed-off-by: Jesper Juhl <jj@chaosbits.net>
     Signed-off-by: Jiri Kosina <jkosina@suse.cz>

  reply	other threads:[~2011-08-03  0:06 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-11 11:47 Remaining omap pull requests Tony Lindgren
2011-07-11 11:47 ` Tony Lindgren
2011-07-11 11:49 ` [GIT PULL] omap cleanup for v3.1 merge window, part 3 Tony Lindgren
2011-07-11 11:50 ` [GIT PULL] omap fixes for v3.1 merge window, part 2 Tony Lindgren
2011-07-11 11:53 ` [GIT PULL] omap related MFD and ASoC patches for v3.1 merge window Tony Lindgren
2011-07-11 11:53   ` Tony Lindgren
2011-07-11 22:16 ` Remaining omap pull requests Arnd Bergmann
2011-07-11 22:16   ` Arnd Bergmann
2011-07-13  6:16   ` Tony Lindgren
2011-07-13  6:16     ` Tony Lindgren
2011-08-02 23:14     ` Kevin Hilman
2011-08-02 23:14       ` Kevin Hilman
2011-08-03  0:06       ` Kevin Hilman [this message]
2011-08-03  0:06         ` Kevin Hilman
2011-08-10 12:21         ` Tony Lindgren
2011-08-10 12:21           ` Tony Lindgren
2011-08-16 14:07           ` Arnd Bergmann
2011-08-16 14:07             ` Arnd Bergmann
2011-07-12  8:41 ` Jan Weitzel
2011-07-12  8:41   ` Jan Weitzel
2011-07-13  6:25   ` Tony Lindgren
2011-07-13  6:25     ` Tony Lindgren

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=4E389102.1050302@ti.com \
    --to=khilman@ti.com \
    --cc=arnd@arndb.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=nico@fluxnic.net \
    --cc=tglx@linutronix.de \
    --cc=tony@atomide.com \
    /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.