linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: manjunath.hadli@ti.com (Manjunath Hadli)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 4/8] davinci: dm644x: Replace register base value with a defined macro
Date: Wed, 21 Dec 2011 19:13:37 +0530	[thread overview]
Message-ID: <1324475021-32509-5-git-send-email-manjunath.hadli@ti.com> (raw)
In-Reply-To: <1324475021-32509-1-git-send-email-manjunath.hadli@ti.com>

Replace hard coded value of vpss register base to a define macro
DM644X_VPSS_BASE for proper readability

Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com>
Acked-by: Sekhar Nori <nsekhar@ti.com>
---
 arch/arm/mach-davinci/dm644x.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/arch/arm/mach-davinci/dm644x.c b/arch/arm/mach-davinci/dm644x.c
index 6b95b4b..97aecf2 100644
--- a/arch/arm/mach-davinci/dm644x.c
+++ b/arch/arm/mach-davinci/dm644x.c
@@ -594,13 +594,15 @@ static struct platform_device dm644x_asp_device = {
 	.resource	= dm644x_asp_resources,
 };
 
+#define DM644X_VPSS_BASE	0x01c73400
+
 static struct resource dm644x_vpss_resources[] = {
 	{
 		/* VPSS Base address */
 		.name		= "vpss",
-		.start          = 0x01c73400,
-		.end            = 0x01c73400 + 0xff,
-		.flags          = IORESOURCE_MEM,
+		.start		= DM644X_VPSS_BASE,
+		.end		= DM644X_VPSS_BASE + 0xff,
+		.flags		= IORESOURCE_MEM,
 	},
 };
 
-- 
1.6.2.4

  parent reply	other threads:[~2011-12-21 13:43 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-21 13:43 [PATCH v7 0/8] ARM: davinci:add support for dm644x vpbe display driver Manjunath Hadli
2011-12-21 13:43 ` [PATCH v7 1/8] davinci: vpif: remove machine specific inclusion from driver Manjunath Hadli
2011-12-22 13:10   ` Nori, Sekhar
2011-12-21 13:43 ` [PATCH v7 2/8] ARM: davinci: create new common platform header for davinci Manjunath Hadli
2012-02-20 13:31   ` Nori, Sekhar
2011-12-21 13:43 ` [PATCH v7 3/8] davinci: eliminate use of IO_ADDRESS() on sysmod Manjunath Hadli
2012-02-20 14:19   ` Nori, Sekhar
2011-12-21 13:43 ` Manjunath Hadli [this message]
2012-02-20 14:29   ` [PATCH v7 4/8] davinci: dm644x: Replace register base value with a defined macro Nori, Sekhar
2011-12-21 13:43 ` [PATCH v7 5/8] davinci: dm644x: change vpfe capture structure variables for consistency Manjunath Hadli
2011-12-21 14:55   ` Karicheri, Muralidharan
2012-01-04  7:37     ` Hadli, Manjunath
2012-02-20 18:33   ` Nori, Sekhar
2011-12-21 13:43 ` [PATCH v7 6/8] davinci: dm644x: move vpfe init from soc to board specific files Manjunath Hadli
2012-02-20 19:15   ` Nori, Sekhar
2011-12-21 13:43 ` [PATCH v7 7/8] davinci: dm644x: add support for v4l2 video display Manjunath Hadli
2012-02-20 20:23   ` Nori, Sekhar
2011-12-21 13:43 ` [PATCH v7 8/8] davinci: dm644x EVM: add support for VPBE display Manjunath Hadli

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=1324475021-32509-5-git-send-email-manjunath.hadli@ti.com \
    --to=manjunath.hadli@ti.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).