From: Kukjin Kim <kgene@kernel.org>
To: 'Tomasz Figa' <tomasz.figa@gmail.com>, linux-samsung-soc@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org,
linux-media@vger.kernel.org, alsa-devel@alsa-project.org,
'Arnd Bergmann' <arnd@arndb.de>,
'Olof Johansson' <olof@lixom.net>,
'Russell King - ARM Linux' <linux@arm.linux.org.uk>,
'Ben Dooks' <ben-linux@fluff.org>,
'Linus Walleij' <linus.walleij@linaro.org>,
'Mauro Carvalho Chehab' <m.chehab@samsung.com>,
'Sangbeom Kim' <sbkim73@samsung.com>,
'Liam Girdwood' <lgirdwood@gmail.com>,
'Mark Brown' <broonie@kernel.org>,
'Jaroslav Kysela' <perex@perex.cz>,
'Takashi Iwai' <tiwai@suse.de>,
'Sylwester Nawrocki' <s.nawrocki@samsung.com>,
'Geert Uytterhoeven' <geert@linux-m68k.org>,
'Martin Schwidefsky' <schwidefsky@de.ibm.com>
Subject: RE: [PATCH 1/5] ARM: Kconfig: Move if ARCH_S3C64XX statement to mach-s3c64xx/Kconfig
Date: Mon, 30 Sep 2013 16:22:51 +0900 [thread overview]
Message-ID: <069301cebdad$df658f90$9e30aeb0$@org> (raw)
In-Reply-To: <1380392497-27406-1-git-send-email-tomasz.figa@gmail.com>
Tomasz Figa wrote:
>
> All other platforms have this condition checked inside their own Kconfig
> files, so for consistency this patch makes it this way for mach-s3c64xx
> as well.
>
> Signed-off-by: Tomasz Figa <tomasz.figa@gmail.com>
> ---
> arch/arm/Kconfig | 2 --
> arch/arm/mach-s3c64xx/Kconfig | 4 ++++
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> index b766dad..dc51f8a 100644
> --- a/arch/arm/Kconfig
> +++ b/arch/arm/Kconfig
> @@ -995,9 +995,7 @@ source "arch/arm/mach-sti/Kconfig"
>
> source "arch/arm/mach-s3c24xx/Kconfig"
>
> -if ARCH_S3C64XX
> source "arch/arm/mach-s3c64xx/Kconfig"
> -endif
>
> source "arch/arm/mach-s5p64x0/Kconfig"
>
> diff --git a/arch/arm/mach-s3c64xx/Kconfig b/arch/arm/mach-s3c64xx/Kconfig
> index bd14e3a..0e23910 100644
> --- a/arch/arm/mach-s3c64xx/Kconfig
> +++ b/arch/arm/mach-s3c64xx/Kconfig
> @@ -3,6 +3,8 @@
> #
> # Licensed under GPLv2
>
> +if ARCH_S3C64XX
> +
> # temporary until we can eliminate all drivers using it.
> config PLAT_S3C64XX
> bool
> @@ -322,3 +324,5 @@ config MACH_S3C64XX_DT
> board.
> Note: This is under development and not all peripherals can be
> supported with this machine file.
> +
> +endif
> --
> 1.8.3.2
Looks good to me, applied 1 to 5 patches into cleanup.
Thanks,
Kukjin
WARNING: multiple messages have this Message-ID (diff)
From: kgene@kernel.org (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/5] ARM: Kconfig: Move if ARCH_S3C64XX statement to mach-s3c64xx/Kconfig
Date: Mon, 30 Sep 2013 16:22:51 +0900 [thread overview]
Message-ID: <069301cebdad$df658f90$9e30aeb0$@org> (raw)
In-Reply-To: <1380392497-27406-1-git-send-email-tomasz.figa@gmail.com>
Tomasz Figa wrote:
>
> All other platforms have this condition checked inside their own Kconfig
> files, so for consistency this patch makes it this way for mach-s3c64xx
> as well.
>
> Signed-off-by: Tomasz Figa <tomasz.figa@gmail.com>
> ---
> arch/arm/Kconfig | 2 --
> arch/arm/mach-s3c64xx/Kconfig | 4 ++++
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> index b766dad..dc51f8a 100644
> --- a/arch/arm/Kconfig
> +++ b/arch/arm/Kconfig
> @@ -995,9 +995,7 @@ source "arch/arm/mach-sti/Kconfig"
>
> source "arch/arm/mach-s3c24xx/Kconfig"
>
> -if ARCH_S3C64XX
> source "arch/arm/mach-s3c64xx/Kconfig"
> -endif
>
> source "arch/arm/mach-s5p64x0/Kconfig"
>
> diff --git a/arch/arm/mach-s3c64xx/Kconfig b/arch/arm/mach-s3c64xx/Kconfig
> index bd14e3a..0e23910 100644
> --- a/arch/arm/mach-s3c64xx/Kconfig
> +++ b/arch/arm/mach-s3c64xx/Kconfig
> @@ -3,6 +3,8 @@
> #
> # Licensed under GPLv2
>
> +if ARCH_S3C64XX
> +
> # temporary until we can eliminate all drivers using it.
> config PLAT_S3C64XX
> bool
> @@ -322,3 +324,5 @@ config MACH_S3C64XX_DT
> board.
> Note: This is under development and not all peripherals can be
> supported with this machine file.
> +
> +endif
> --
> 1.8.3.2
Looks good to me, applied 1 to 5 patches into cleanup.
Thanks,
Kukjin
next prev parent reply other threads:[~2013-09-30 7:22 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-28 18:21 [PATCH 1/5] ARM: Kconfig: Move if ARCH_S3C64XX statement to mach-s3c64xx/Kconfig Tomasz Figa
2013-09-28 18:21 ` Tomasz Figa
2013-09-28 18:21 ` [PATCH 2/5] gpio: samsung: Use CONFIG_ARCH_S3C64XX to check for S3C64xx support Tomasz Figa
2013-09-28 18:21 ` Tomasz Figa
2013-09-28 18:21 ` Tomasz Figa
2013-10-02 10:46 ` Linus Walleij
2013-10-02 10:46 ` Linus Walleij
2013-10-02 10:46 ` Linus Walleij
2013-10-02 21:10 ` Tomasz Figa
2013-10-02 21:10 ` Tomasz Figa
2013-10-02 21:10 ` Tomasz Figa
2013-09-28 18:21 ` [PATCH 3/5] [media] s3c-camif: " Tomasz Figa
2013-09-28 18:21 ` Tomasz Figa
2013-10-11 13:13 ` Sylwester Nawrocki
2013-10-11 13:13 ` Sylwester Nawrocki
2013-09-28 18:21 ` [PATCH 4/5] ASoC: samsung: " Tomasz Figa
2013-09-28 18:21 ` Tomasz Figa
2013-09-28 22:56 ` Mark Brown
2013-09-28 22:56 ` Mark Brown
2013-09-28 18:21 ` [PATCH 5/5] ARM: s3c64xx: Kill CONFIG_PLAT_S3C64XX Tomasz Figa
2013-09-28 18:21 ` Tomasz Figa
2013-09-30 7:22 ` Kukjin Kim [this message]
2013-09-30 7:22 ` [PATCH 1/5] ARM: Kconfig: Move if ARCH_S3C64XX statement to mach-s3c64xx/Kconfig 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='069301cebdad$df658f90$9e30aeb0$@org' \
--to=kgene@kernel.org \
--cc=alsa-devel@alsa-project.org \
--cc=arnd@arndb.de \
--cc=ben-linux@fluff.org \
--cc=broonie@kernel.org \
--cc=geert@linux-m68k.org \
--cc=lgirdwood@gmail.com \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=m.chehab@samsung.com \
--cc=olof@lixom.net \
--cc=perex@perex.cz \
--cc=s.nawrocki@samsung.com \
--cc=sbkim73@samsung.com \
--cc=schwidefsky@de.ibm.com \
--cc=tiwai@suse.de \
--cc=tomasz.figa@gmail.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.