linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: haojian.zhuang@gmail.com (Haojian Zhuang)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 7/8] [ARM] pxa: move ssp into common plat-pxa
Date: Tue, 16 Mar 2010 20:49:51 +0800	[thread overview]
Message-ID: <771cded01003160549t73b30cccr7ba56722c28f013c@mail.gmail.com> (raw)
In-Reply-To: <1268740373-27407-8-git-send-email-eric.y.miao@gmail.com>

On Tue, Mar 16, 2010 at 7:52 PM, Eric Miao <eric.y.miao@gmail.com> wrote:
> From: Haojian Zhuang <haojian.zhuang@marvell.com>
>
> Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>
> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
> Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
> ---
> ?arch/arm/mach-pxa/Kconfig ? ? ? ? ? ? ? ? ? ? ? ? ?| ? ?5 -----
> ?arch/arm/mach-pxa/Makefile ? ? ? ? ? ? ? ? ? ? ? ? | ? ?1 -
> ?arch/arm/mach-pxa/poodle.c ? ? ? ? ? ? ? ? ? ? ? ? | ? ?2 +-
> ?arch/arm/plat-pxa/Kconfig ? ? ? ? ? ? ? ? ? ? ? ? ?| ? ?5 +++++
> ?arch/arm/plat-pxa/Makefile ? ? ? ? ? ? ? ? ? ? ? ? | ? ?1 +
> ?.../include/mach => plat-pxa/include/plat}/ssp.h ? | ? ?0
> ?arch/arm/{mach-pxa => plat-pxa}/ssp.c ? ? ? ? ? ? ?| ? ?2 +-
> ?drivers/spi/pxa2xx_spi.c ? ? ? ? ? ? ? ? ? ? ? ? ? | ? ?2 +-
> ?sound/soc/pxa/pxa-ssp.c ? ? ? ? ? ? ? ? ? ? ? ? ? ?| ? ?2 +-
> ?9 files changed, 10 insertions(+), 10 deletions(-)
> ?rename arch/arm/{mach-pxa/include/mach => plat-pxa/include/plat}/ssp.h (100%)
> ?rename arch/arm/{mach-pxa => plat-pxa}/ssp.c (99%)
>
> diff --git a/arch/arm/mach-pxa/Kconfig b/arch/arm/mach-pxa/Kconfig
> index 8f7eb12..6dd450a 100644

Hi Eric,

I have some comments on this patch. I'm re-formating that patch in
sound-2.6 git tree and attach it for reference. I think more files
should be modified. Here's the file list in my patch.

 arch/arm/mach-pxa/Kconfig            |    5 -
 arch/arm/mach-pxa/Makefile           |    3 -
 arch/arm/mach-pxa/corgi_ssp.c        |    2 +-
 arch/arm/mach-pxa/include/mach/ssp.h |  107 -------
 arch/arm/mach-pxa/littleton.c        |    2 +-
 arch/arm/mach-pxa/poodle.c           |    4 +-
 arch/arm/mach-pxa/pxa3xx.c           |    2 +-
 arch/arm/mach-pxa/ssp.c              |  505 --------------------------------
 arch/arm/plat-pxa/Kconfig            |    5 +
 arch/arm/plat-pxa/Makefile           |    1 +
 arch/arm/plat-pxa/include/plat/ssp.h |  107 +++++++
 arch/arm/plat-pxa/ssp.c              |  527 ++++++++++++++++++++++++++++++++++
 sound/soc/pxa/pxa-ssp.c              |    2 +-
 13 files changed, 646 insertions(+), 626 deletions(-)

By the way, I'm still format other patches for share more code between
pxa2xx-ssp & pxa168-sssp. Since you're updating ssp. The ssp code will
be different between your git tree and mark's asoc git tree. If my
patches are merged into asoc git tree, how to sync to your git tree?

Mark,
do you have any comments on syncing code?

Thanks
Haojian
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001--ARM-pxa-move-ssp-into-plat.patch
Type: application/octet-stream
Size: 35428 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20100316/643de334/attachment-0001.obj>

  reply	other threads:[~2010-03-16 12:49 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-16 11:52 [PATCH 0/8] pxa: ssp code cleanup Eric Miao
2010-03-16 11:52 ` [PATCH 1/8] input: remove now deprecated corgi_ts.c touchscreen driver Eric Miao
2010-03-16 11:52 ` [PATCH 2/8] [ARM] pxa: remove now un-used corgi_ssp.c and corgi_lcd.c Eric Miao
2010-03-16 11:52 ` [PATCH 3/8] [ARM] pxa: remove the now legacy SSP API Eric Miao
2010-03-16 11:52 ` [PATCH 4/8] [ARM] pxa: correct SSCR0_SCR to support multiple SoCs Eric Miao
2010-03-16 11:52 ` [PATCH 5/8] [ARM] pxa: merge regs-ssp.h into ssp.h Eric Miao
2010-03-16 11:52 ` [PATCH 6/8] [ARM] pxa: remove unnecessary #include of <mach/ssp.h> Eric Miao
2010-03-16 11:52 ` [PATCH 7/8] [ARM] pxa: move ssp into common plat-pxa Eric Miao
2010-03-16 12:49   ` Haojian Zhuang [this message]
2010-03-16 12:59     ` Mark Brown
2010-03-16 13:04       ` Eric Miao
2010-03-16 13:23         ` Mark Brown
2010-03-16 13:47           ` Eric Miao
2010-03-16 14:08             ` Mark Brown
2010-03-17  5:14               ` Eric Miao
2010-03-17 10:05                 ` Mark Brown
2010-03-17 14:07                   ` Eric Miao
2010-03-17 14:18                     ` Haojian Zhuang
2010-03-17 14:32                     ` Mark Brown
2010-03-17 14:09                   ` Haojian Zhuang
2010-03-16 11:52 ` [PATCH 8/8] [ARM] pxa: remove incorrect select PXA_SSP in Kconfig Eric Miao

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=771cded01003160549t73b30cccr7ba56722c28f013c@mail.gmail.com \
    --to=haojian.zhuang@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.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;
as well as URLs for NNTP newsgroup(s).