From: s.hauer@pengutronix.de (Sascha Hauer)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/4] arm/imx: fix the references to ARCH_MX3
Date: Thu, 10 Nov 2011 09:49:43 +0100 [thread overview]
Message-ID: <20111110084943.GW16886@pengutronix.de> (raw)
In-Reply-To: <1320914372-4416-3-git-send-email-shawn.guo@linaro.org>
On Thu, Nov 10, 2011 at 04:39:30PM +0800, Shawn Guo wrote:
> The config symbol ARCH_MX3 has been removed by commit 'a89cf59
> arm/imx: merge i.MX3 and i.MX6', and it should not be referenced
> any more.
>
> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
> Cc: Vinod Koul <vinod.koul@intel.com>
> Cc: Sascha Hauer <s.hauer@pengutronix.de>
> ---
> arch/arm/mach-imx/Makefile.boot | 10 +++++++---
> drivers/dma/Kconfig | 4 ++--
> 2 files changed, 9 insertions(+), 5 deletions(-)
>
> diff --git a/arch/arm/mach-imx/Makefile.boot b/arch/arm/mach-imx/Makefile.boot
> index 22d8588..c349a96 100644
> --- a/arch/arm/mach-imx/Makefile.boot
> +++ b/arch/arm/mach-imx/Makefile.boot
> @@ -14,9 +14,13 @@ zreladdr-$(CONFIG_MACH_MX27) += 0xA0008000
> params_phys-$(CONFIG_MACH_MX27) := 0xA0000100
> initrd_phys-$(CONFIG_MACH_MX27) := 0xA0800000
>
> -zreladdr-$(CONFIG_ARCH_MX3) += 0x80008000
> -params_phys-$(CONFIG_ARCH_MX3) := 0x80000100
> -initrd_phys-$(CONFIG_ARCH_MX3) := 0x80800000
> +zreladdr-$(CONFIG_SOC_IMX31) += 0x80008000
> +params_phys-$(CONFIG_SOC_IMX31) := 0x80000100
> +initrd_phys-$(CONFIG_SOC_IMX31) := 0x80800000
> +
> +zreladdr-$(CONFIG_SOC_IMX35) += 0x80008000
> +params_phys-$(CONFIG_SOC_IMX35) := 0x80000100
> +initrd_phys-$(CONFIG_SOC_IMX35) := 0x80800000
>
> zreladdr-$(CONFIG_SOC_IMX6Q) += 0x10008000
> params_phys-$(CONFIG_SOC_IMX6Q) := 0x10000100
Can you please replace all CONFIG_ARCH_* in this file instead?
> diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig
> index ab8f469..8f7dce1 100644
> --- a/drivers/dma/Kconfig
> +++ b/drivers/dma/Kconfig
> @@ -124,7 +124,7 @@ config MV_XOR
>
> config MX3_IPU
> bool "MX3x Image Processing Unit support"
> - depends on ARCH_MX3
> + depends on SOC_IMX31 || SOC_IMX35
> select DMA_ENGINE
> default y
> help
> @@ -216,7 +216,7 @@ config PCH_DMA
>
> config IMX_SDMA
> tristate "i.MX SDMA support"
> - depends on ARCH_MX25 || ARCH_MX3 || ARCH_MX5
> + depends on ARCH_MX25 || SOC_IMX31 || SOC_IMX35 || ARCH_MX5
I already sent a patch to Vinod to remove those individual SoC
dependencies and depend on ARCH_MXC instead.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
next prev parent reply other threads:[~2011-11-10 8:49 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-10 8:39 [PATCH 0/4] imx: a few fixes for v3.2-rc Shawn Guo
2011-11-10 8:39 ` [PATCH 1/4] arm/imx: fix mx3_defconfig to add FEC back Shawn Guo
2011-11-10 8:49 ` Richard Zhao
2011-11-10 8:57 ` Uwe Kleine-König
2011-11-11 7:16 ` Shawn Guo
2011-11-11 10:12 ` Uwe Kleine-König
2011-11-11 15:58 ` Sascha Hauer
2011-11-11 23:26 ` Shawn Guo
2011-11-10 8:39 ` [PATCH 2/4] arm/imx: fix the references to ARCH_MX3 Shawn Guo
2011-11-10 8:49 ` Sascha Hauer [this message]
2011-11-11 7:37 ` [PATCH v2] " Shawn Guo
2011-11-21 13:47 ` Paul Bolle
2011-11-22 10:43 ` Sascha Hauer
2011-11-22 10:50 ` Paul Bolle
2011-11-10 8:39 ` [PATCH 3/4] arm/imx: fix AUTO_ZRELADDR selection Shawn Guo
2011-11-10 8:39 ` [PATCH 4/4] arm/imx: fix imx6q mmc error when mounting rootfs Shawn Guo
2011-11-10 13:44 ` Dirk Behme
2011-11-10 15:07 ` Jason Liu
2011-11-11 7:47 ` Shawn Guo
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=20111110084943.GW16886@pengutronix.de \
--to=s.hauer@pengutronix.de \
--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).