public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Albert ARIBAUD <albert.u.boot@aribaud.net>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v6 1/4] gpio: Move common gpio.h to	include/asm-generic
Date: Thu, 15 Sep 2011 23:27:37 +0200	[thread overview]
Message-ID: <4E726DC9.8040609@aribaud.net> (raw)
In-Reply-To: <20110915094535.39E2711F9E77@gemini.denx.de>

Le 15/09/2011 11:45, Wolfgang Denk a ?crit :
> Dear Kim,
>
> In message<20110913200803.4d76579c.kim.phillips@freescale.com>  you wrote:
>>
>>>   arch/arm/include/asm/gpio.h     |   38 +-------------------------------------
>>>   arch/powerpc/include/asm/gpio.h |    2 ++
>>>   include/asm-generic/gpio.h      |   37 +++++++++++++++++++++++++++++++++++++
>>>   3 files changed, 40 insertions(+), 37 deletions(-)
>>>   create mode 100644 arch/powerpc/include/asm/gpio.h
>>>   create mode 100644 include/asm-generic/gpio.h
>>
>> applied 4 out of 4 patches.
>>
>> Wolfgang, technically this is a multi-domain patchseries, and I've
>> overstepped my boundaries for the sake of expediency in adding the
>> GPIO feature to 83xx-land.  If this is a problem, and you'd like to
>> apply patches 1 and 2 independently of mpc83xx, please let me know
>> and I'll back the entire series off the mpc83xx tree.  Fwiw, I
>> build-tested a couple of ARM boards, including davinci.
>
> As this relates to ARM files, you need Albert's OK here, not mine.
> [I put Albert on Cc:]

Well, it relates to both ARM and PPC equally, but anyway...

Acked-By: Albert ARIBAUD <albert.u.boot@aribaud.net>

> Best regards,
>
> Wolfgang Denk

Amicalement,
-- 
Albert.

  reply	other threads:[~2011-09-15 21:27 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-09 22:31 [U-Boot] [PATCH 1/2] mpc83xx: Add a GPIO driver for the MPC83XX family Joe Hershberger
2011-08-09 22:15 ` Scott Wood
2011-08-09 22:23   ` Joe Hershberger
2011-08-10  0:45   ` [U-Boot] [PATCH v3 " Joe Hershberger
2011-08-10  0:45   ` [U-Boot] [PATCH v3 2/2] mpc8313erdb: Enable GPIO support on the MPC8313E RDB Joe Hershberger
2011-08-09 22:31 ` [U-Boot] [PATCH " Joe Hershberger
2011-08-09 22:54 ` [U-Boot] [PATCH 1/2] mpc83xx: Add a GPIO driver for the MPC83XX family Kim Phillips
2011-08-09 23:03   ` Joe Hershberger
2011-08-10  4:56   ` [U-Boot] [PATCH v4 1/3] gpio: Move common gpio.h to include/asm-generic Joe Hershberger
2011-08-11  3:26     ` Mike Frysinger
2011-08-12  8:11       ` [U-Boot] [PATCH v5 " Joe Hershberger
2011-08-12 18:42         ` Mike Frysinger
2011-08-13  0:10           ` [U-Boot] [PATCH v6 1/4] " Joe Hershberger
2011-08-14 18:55             ` Mike Frysinger
2011-09-14  1:08             ` Kim Phillips
2011-09-15  9:45               ` Wolfgang Denk
2011-09-15 21:27                 ` Albert ARIBAUD [this message]
2011-10-12  3:50             ` [U-Boot] [PATCH v7 " Joe Hershberger
2011-10-12 15:55               ` Laurence Withers
2011-11-03 20:53                 ` Kim Phillips
2011-11-05  2:24                   ` [U-Boot] [PATCH v8 1/4] gpio: Modify common gpio.h to more closely match Linux Joe Hershberger
2011-11-05 17:06                     ` Mike Frysinger
2011-11-11 21:55                     ` [U-Boot] [PATCH v9 " Joe Hershberger
2011-12-13  0:54                       ` Kim Phillips
2011-11-11 21:55                     ` [U-Boot] [PATCH v9 2/4] gpio: Replace ARM gpio.h with the common API in include/asm-generic Joe Hershberger
2011-11-11 23:07                       ` Kim Phillips
2011-11-17 18:24                         ` Joe Hershberger
2011-11-11 21:55                     ` [U-Boot] [PATCH v9 3/4] mpc83xx: Add a GPIO driver for the MPC83XX family Joe Hershberger
2011-11-11 21:55                     ` [U-Boot] [PATCH v9 4/4] mpc8313erdb: Enable GPIO support on the MPC8313E RDB Joe Hershberger
2011-11-05  2:24                   ` [U-Boot] [PATCH v8 2/4] gpio: Replace ARM gpio.h with the common API in include/asm-generic Joe Hershberger
2011-11-07 16:35                     ` Stephen Warren
2011-11-07 17:39                       ` Mike Frysinger
2011-11-07 17:02                         ` Stephen Warren
2011-11-07 17:45                           ` Joe Hershberger
2011-11-07 19:02                           ` Mike Frysinger
2011-11-05  2:25                   ` [U-Boot] [PATCH v8 3/4] mpc83xx: Add a GPIO driver for the MPC83XX family Joe Hershberger
2011-11-05 17:07                     ` Mike Frysinger
2011-11-05  2:25                   ` [U-Boot] [PATCH v8 4/4] mpc8313erdb: Enable GPIO support on the MPC8313E RDB Joe Hershberger
2011-10-12  3:50             ` [U-Boot] [PATCH v7 2/4] gpio: Modify common gpio.h to more closely match Linux Joe Hershberger
2011-10-12 15:55               ` Laurence Withers
2011-10-12  3:50             ` [U-Boot] [PATCH v7 3/4] mpc83xx: Add a GPIO driver for the MPC83XX family Joe Hershberger
2011-10-12  3:50             ` [U-Boot] [PATCH v7 4/4] mpc8313erdb: Enable GPIO support on the MPC8313E RDB Joe Hershberger
2011-08-13  0:10           ` [U-Boot] [PATCH v6 2/4] gpio: Modify common gpio.h to more closely match Linux Joe Hershberger
2011-08-14 18:55             ` Mike Frysinger
2011-10-06 21:56             ` Wolfgang Denk
2011-08-13  0:10           ` [U-Boot] [PATCH v6 3/4] mpc83xx: Add a GPIO driver for the MPC83XX family Joe Hershberger
2011-10-06 21:55             ` Wolfgang Denk
2011-08-13  0:10           ` [U-Boot] [PATCH v6 4/4] mpc8313erdb: Enable GPIO support on the MPC8313E RDB Joe Hershberger
2011-10-06 21:55             ` Wolfgang Denk
2011-08-12  8:11       ` [U-Boot] [PATCH v5 2/3] mpc83xx: Add a GPIO driver for the MPC83XX family Joe Hershberger
2011-08-12  8:11       ` [U-Boot] [PATCH v5 3/3] mpc8313erdb: Enable GPIO support on the MPC8313E RDB Joe Hershberger
2011-08-10  4:56   ` [U-Boot] [PATCH v4 2/3] mpc83xx: Add a GPIO driver for the MPC83XX family Joe Hershberger
2011-08-10  4:56   ` [U-Boot] [PATCH v4 3/3] mpc8313erdb: Enable GPIO support on the MPC8313E RDB Joe Hershberger
2011-08-09 23:52 ` [U-Boot] [PATCH v2 1/2] mpc83xx: Add a GPIO driver for the MPC83XX family Joe Hershberger
2011-08-09 23:52 ` [U-Boot] [PATCH v2 2/2] mpc8313erdb: Enable GPIO support on the MPC8313E RDB Joe Hershberger

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=4E726DC9.8040609@aribaud.net \
    --to=albert.u.boot@aribaud.net \
    --cc=u-boot@lists.denx.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox