From: Stephen Boyd <sboyd@codeaurora.org>
To: Rohit Vaswani <rvaswani@codeaurora.org>
Cc: Olof Johansson <olof@lixom.net>,
David Brown <davidb@codeaurora.org>,
Bryan Huntsman <bryanh@codeaurora.org>,
Daniel Walker <dwalker@fifo99.com>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org
Subject: Re: [PATCHv2 2/2] msm: io: Change the default static iomappings to be shared
Date: Thu, 06 Sep 2012 20:17:21 -0700 [thread overview]
Message-ID: <50496741.8000305@codeaurora.org> (raw)
In-Reply-To: <1346951799-9415-1-git-send-email-rvaswani@codeaurora.org>
On 09/06/12 10:16, Rohit Vaswani wrote:
> static struct map_desc msm_io_desc[] __initdata = {
> - MSM_DEVICE(VIC),
> - MSM_CHIP_DEVICE(CSR, MSM7X00),
> - MSM_DEVICE(DMOV),
> - MSM_CHIP_DEVICE(GPIO1, MSM7X00),
> - MSM_CHIP_DEVICE(GPIO2, MSM7X00),
> - MSM_DEVICE(CLK_CTL),
> + MSM_DEVICE_TYPE(VIC, MT_DEVICE_NONSHARED),
> + MSM_CHIP_DEVICE_TYPE(CSR, MSM7X00, MT_DEVICE_NONSHARED),
> + MSM_DEVICE_TYPE(DMOV, MT_DEVICE_NONSHARED),
> + MSM_CHIP_DEVICE_TYPE(GPIO1, MSM7X00, MT_DEVICE_NONSHARED),
> + MSM_CHIP_DEVICE_TYPE(GPIO2, MSM7X00, MT_DEVICE_NONSHARED),
> + MSM_CHIP_DEVICE_TYPE(CLK_CTL, MSM7X00, MT_DEVICE_NONSHARED),
This one is supposed to be MSM_DEVICE_TYPE.
Please squash this in:
diff --git a/arch/arm/mach-msm/io.c b/arch/arm/mach-msm/io.c
index 35d6926..d908a37 100644
--- a/arch/arm/mach-msm/io.c
+++ b/arch/arm/mach-msm/io.c
@@ -52,7 +52,7 @@ static struct map_desc msm_io_desc[] __initdata = {
MSM_DEVICE_TYPE(DMOV, MT_DEVICE_NONSHARED),
MSM_CHIP_DEVICE_TYPE(GPIO1, MSM7X00, MT_DEVICE_NONSHARED),
MSM_CHIP_DEVICE_TYPE(GPIO2, MSM7X00, MT_DEVICE_NONSHARED),
- MSM_CHIP_DEVICE_TYPE(CLK_CTL, MSM7X00, MT_DEVICE_NONSHARED),
+ MSM_DEVICE_TYPE(CLK_CTL, MT_DEVICE_NONSHARED),
#if defined(CONFIG_DEBUG_MSM_UART1) || defined(CONFIG_DEBUG_MSM_UART2) || \
defined(CONFIG_DEBUG_MSM_UART3)
MSM_DEVICE_TYPE(DEBUG_UART, MT_DEVICE_NONSHARED),
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation
WARNING: multiple messages have this Message-ID (diff)
From: sboyd@codeaurora.org (Stephen Boyd)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCHv2 2/2] msm: io: Change the default static iomappings to be shared
Date: Thu, 06 Sep 2012 20:17:21 -0700 [thread overview]
Message-ID: <50496741.8000305@codeaurora.org> (raw)
In-Reply-To: <1346951799-9415-1-git-send-email-rvaswani@codeaurora.org>
On 09/06/12 10:16, Rohit Vaswani wrote:
> static struct map_desc msm_io_desc[] __initdata = {
> - MSM_DEVICE(VIC),
> - MSM_CHIP_DEVICE(CSR, MSM7X00),
> - MSM_DEVICE(DMOV),
> - MSM_CHIP_DEVICE(GPIO1, MSM7X00),
> - MSM_CHIP_DEVICE(GPIO2, MSM7X00),
> - MSM_DEVICE(CLK_CTL),
> + MSM_DEVICE_TYPE(VIC, MT_DEVICE_NONSHARED),
> + MSM_CHIP_DEVICE_TYPE(CSR, MSM7X00, MT_DEVICE_NONSHARED),
> + MSM_DEVICE_TYPE(DMOV, MT_DEVICE_NONSHARED),
> + MSM_CHIP_DEVICE_TYPE(GPIO1, MSM7X00, MT_DEVICE_NONSHARED),
> + MSM_CHIP_DEVICE_TYPE(GPIO2, MSM7X00, MT_DEVICE_NONSHARED),
> + MSM_CHIP_DEVICE_TYPE(CLK_CTL, MSM7X00, MT_DEVICE_NONSHARED),
This one is supposed to be MSM_DEVICE_TYPE.
Please squash this in:
diff --git a/arch/arm/mach-msm/io.c b/arch/arm/mach-msm/io.c
index 35d6926..d908a37 100644
--- a/arch/arm/mach-msm/io.c
+++ b/arch/arm/mach-msm/io.c
@@ -52,7 +52,7 @@ static struct map_desc msm_io_desc[] __initdata = {
MSM_DEVICE_TYPE(DMOV, MT_DEVICE_NONSHARED),
MSM_CHIP_DEVICE_TYPE(GPIO1, MSM7X00, MT_DEVICE_NONSHARED),
MSM_CHIP_DEVICE_TYPE(GPIO2, MSM7X00, MT_DEVICE_NONSHARED),
- MSM_CHIP_DEVICE_TYPE(CLK_CTL, MSM7X00, MT_DEVICE_NONSHARED),
+ MSM_DEVICE_TYPE(CLK_CTL, MT_DEVICE_NONSHARED),
#if defined(CONFIG_DEBUG_MSM_UART1) || defined(CONFIG_DEBUG_MSM_UART2) || \
defined(CONFIG_DEBUG_MSM_UART3)
MSM_DEVICE_TYPE(DEBUG_UART, MT_DEVICE_NONSHARED),
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation
next prev parent reply other threads:[~2012-09-07 3:17 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-10 21:18 [PATCH RESEND 2/2] msm: io: Change the default static iomappings to be shared Rohit Vaswani
2012-08-10 21:18 ` Rohit Vaswani
2012-08-28 20:41 ` Olof Johansson
2012-08-28 20:41 ` Olof Johansson
2012-09-06 17:16 ` [PATCHv2 " Rohit Vaswani
2012-09-06 17:16 ` Rohit Vaswani
2012-09-07 3:17 ` Stephen Boyd [this message]
2012-09-07 3:17 ` Stephen Boyd
2012-09-07 20:05 ` [PATCHv3 " Rohit Vaswani
2012-09-07 20:05 ` Rohit Vaswani
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=50496741.8000305@codeaurora.org \
--to=sboyd@codeaurora.org \
--cc=bryanh@codeaurora.org \
--cc=davidb@codeaurora.org \
--cc=dwalker@fifo99.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=olof@lixom.net \
--cc=rvaswani@codeaurora.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.