summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-davinci
diff options
context:
space:
mode:
authorManjunath Hadli2011-12-21 14:43:37 +0100
committerSekhar Nori2012-02-24 22:10:20 +0100
commit51f31cb3a22da0fdae69052a98d976fb4ff5857d (patch)
treec61256ecb168a72878a2807c3de6c6a70296178a /arch/arm/mach-davinci
parentARM: davinci: streamline sysmod access (diff)
downloadkernel-qcow2-linux-51f31cb3a22da0fdae69052a98d976fb4ff5857d.tar.gz
kernel-qcow2-linux-51f31cb3a22da0fdae69052a98d976fb4ff5857d.tar.xz
kernel-qcow2-linux-51f31cb3a22da0fdae69052a98d976fb4ff5857d.zip
ARM: davinci: dm644x: improve readability using macro
Replace the VPSS base address "magic number" with the define "DM644X_VPSS_BASE" to improve readability. While at it, fix the indentation done using spaces in this part of code. Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/mach-davinci')
-rw-r--r--arch/arm/mach-davinci/dm644x.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/arm/mach-davinci/dm644x.c b/arch/arm/mach-davinci/dm644x.c
index bf14ec09d3f3..b5377a2ee230 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,
},
};