All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Heiko Stübner" <heiko@sntech.de>
To: Kukjin Kim <kgene.kim@samsung.com>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org, ben-linux@fluff.org
Subject: Re: [PATCH 09/12] ARM: S3C2416: move mach-s3c2416/* into mach-s3c24xx/
Date: Tue, 21 Feb 2012 11:42:58 +0100	[thread overview]
Message-ID: <201202211142.59542.heiko@sntech.de> (raw)
In-Reply-To: <1329346545-16373-10-git-send-email-kgene.kim@samsung.com>

Hi Kgene,

Am Mittwoch, 15. Februar 2012, 23:55:43 schrieb Kukjin Kim:
> This patch moves S3C2416 stuff into mach-s3c24xx/ directory
> so that we can merge the s3c24 series' directories to the
> just one mach-s3c24xx/ directory.
> 
> Cc: Ben Dooks <ben-linux@fluff.org>
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
the patch is missing something like the following to prevent an error because 
"built-in.o" in mach-s3c2416 cannot be found:


diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index f3f6d97..2e46fe9 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -175,7 +175,7 @@ machine-$(CONFIG_ARCH_PRIMA2)               := prima2
 machine-$(CONFIG_ARCH_PXA)             := pxa
 machine-$(CONFIG_ARCH_REALVIEW)                := realview
 machine-$(CONFIG_ARCH_RPC)             := rpc
-machine-$(CONFIG_ARCH_S3C24XX)         := s3c24xx s3c2412 s3c2416 s3c2440
+machine-$(CONFIG_ARCH_S3C24XX)         := s3c24xx s3c2412 s3c2440
 machine-$(CONFIG_ARCH_S3C64XX)         := s3c64xx
 machine-$(CONFIG_ARCH_S5P64X0)         := s5p64x0
 machine-$(CONFIG_ARCH_S5PC100)         := s5pc100


Heiko

WARNING: multiple messages have this Message-ID (diff)
From: heiko@sntech.de (Heiko Stübner)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 09/12] ARM: S3C2416: move mach-s3c2416/* into mach-s3c24xx/
Date: Tue, 21 Feb 2012 11:42:58 +0100	[thread overview]
Message-ID: <201202211142.59542.heiko@sntech.de> (raw)
In-Reply-To: <1329346545-16373-10-git-send-email-kgene.kim@samsung.com>

Hi Kgene,

Am Mittwoch, 15. Februar 2012, 23:55:43 schrieb Kukjin Kim:
> This patch moves S3C2416 stuff into mach-s3c24xx/ directory
> so that we can merge the s3c24 series' directories to the
> just one mach-s3c24xx/ directory.
> 
> Cc: Ben Dooks <ben-linux@fluff.org>
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
the patch is missing something like the following to prevent an error because 
"built-in.o" in mach-s3c2416 cannot be found:


diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index f3f6d97..2e46fe9 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -175,7 +175,7 @@ machine-$(CONFIG_ARCH_PRIMA2)               := prima2
 machine-$(CONFIG_ARCH_PXA)             := pxa
 machine-$(CONFIG_ARCH_REALVIEW)                := realview
 machine-$(CONFIG_ARCH_RPC)             := rpc
-machine-$(CONFIG_ARCH_S3C24XX)         := s3c24xx s3c2412 s3c2416 s3c2440
+machine-$(CONFIG_ARCH_S3C24XX)         := s3c24xx s3c2412 s3c2440
 machine-$(CONFIG_ARCH_S3C64XX)         := s3c64xx
 machine-$(CONFIG_ARCH_S5P64X0)         := s5p64x0
 machine-$(CONFIG_ARCH_S5PC100)         := s5pc100


Heiko

  reply	other threads:[~2012-02-21 10:43 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-15 22:55 [PATCH 00/12] ARM: S3C24XX: create mach-s3c24xx/ for S3C24XX SoCs - WIP Kukjin Kim
2012-02-15 22:55 ` Kukjin Kim
2012-02-15 22:55 ` [PATCH 01/12] ARM: S3C24XX: remove unused spi gpio setup functions Kukjin Kim
2012-02-15 22:55   ` Kukjin Kim
2012-02-15 22:55 ` [PATCH 02/12] ARM: S3C24XX: move spi-s3c24xx platdata out of mach Kukjin Kim
2012-02-15 22:55   ` Kukjin Kim
2012-02-15 22:55 ` [PATCH 03/12] ARM: S3C24XX: Remove extern declaration of clk_msysclk Kukjin Kim
2012-02-15 22:55   ` Kukjin Kim
2012-02-15 22:55 ` [PATCH 04/12] ARM: S3C24XX: move common S3C2443 clock definitions to clock.h Kukjin Kim
2012-02-15 22:55   ` Kukjin Kim
2012-02-15 22:55 ` [PATCH 05/12] ARM: S3C2410: move s3c2410_baseclk_add " Kukjin Kim
2012-02-15 22:55   ` Kukjin Kim
2012-02-15 22:55 ` [PATCH 06/12] ARM: S3C24XX: change the ARCH_S3C2410 to ARCH_S3C24XX Kukjin Kim
2012-02-15 22:55   ` Kukjin Kim
2012-02-16  9:21   ` Felipe Balbi
2012-02-16  9:21     ` Felipe Balbi
2012-02-19 22:53   ` Florian Tobias Schandinat
2012-02-19 22:53     ` Florian Tobias Schandinat
2012-02-28 11:44   ` Wim Van Sebroeck
2012-02-15 22:55 ` [PATCH 07/12] ARM: S3C2410: move mach-s3c2410/* into mach-s3c24xx/ Kukjin Kim
2012-02-15 22:55   ` Kukjin Kim
2012-02-15 22:55 ` [PATCH 08/12] ARM: S3C2412: move mach-s3c2412/* into mach/s3c24xx/ Kukjin Kim
2012-02-15 22:55   ` Kukjin Kim
2012-02-28 21:34   ` [PATCH] Move S3C2412_PM_SLEEP to common platform code Heiko Stübner
2012-02-28 21:34     ` Heiko Stübner
2012-03-01  4:10     ` Kukjin Kim
2012-03-01  4:10       ` Kukjin Kim
2012-02-15 22:55 ` [PATCH 09/12] ARM: S3C2416: move mach-s3c2416/* into mach-s3c24xx/ Kukjin Kim
2012-02-15 22:55   ` Kukjin Kim
2012-02-21 10:42   ` Heiko Stübner [this message]
2012-02-21 10:42     ` Heiko Stübner
2012-02-21 11:14     ` Kukjin Kim
2012-02-21 11:14       ` Kukjin Kim
2012-02-28 21:18   ` Heiko Stübner
2012-02-28 21:18     ` Heiko Stübner
2012-03-01  4:11     ` Kukjin Kim
2012-03-01  4:11       ` Kukjin Kim
2012-02-15 22:55 ` [PATCH 10/12] ARM: S3C2440: move mach-s3c2440/* " Kukjin Kim
2012-02-15 22:55   ` Kukjin Kim
2012-02-15 22:55 ` [PATCH 11/12] ARM: S3C2443: move mach-s3c2443/* " Kukjin Kim
2012-02-15 22:55   ` Kukjin Kim
2012-02-28 21:39 ` [PATCH 00/12] ARM: S3C24XX: create mach-s3c24xx/ for S3C24XX SoCs - WIP Heiko Stübner
2012-02-28 21:39   ` Heiko Stübner
2012-03-01  3:51   ` Kukjin Kim
2012-03-01  3:51     ` Kukjin Kim

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=201202211142.59542.heiko@sntech.de \
    --to=heiko@sntech.de \
    --cc=ben-linux@fluff.org \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-samsung-soc@vger.kernel.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 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.