[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1257195888-6122-1-git-send-email-tfransosi@gmail.com>
Date: Mon, 2 Nov 2009 16:04:48 -0500
From: Thiago Farina <tfransosi@...il.com>
To: trivial@...nel.org
Cc: vapier@...too.org, cooloney@...nel.org,
michael.hennerich@...log.com, barry.song@...log.com,
yi.li@...log.com, uclinux-dist-devel@...ckfin.uclinux.org,
linux-kernel@...r.kernel.org, Thiago Farina <tfransosi@...il.com>
Subject: [PATCH] blackfin/trivial: remove duplicated MAX macro from stamp.
Since the kernel api already has the macro "max",
just use it instead of declaring another one.
Signed-off-by: Thiago Farina <tfransosi@...il.com>
---
arch/blackfin/mach-bf537/boards/stamp.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/arch/blackfin/mach-bf537/boards/stamp.c b/arch/blackfin/mach-bf537/boards/stamp.c
index c46baa5..c76da37 100644
--- a/arch/blackfin/mach-bf537/boards/stamp.c
+++ b/arch/blackfin/mach-bf537/boards/stamp.c
@@ -385,10 +385,9 @@ static struct platform_nand_data bfin_plat_nand_data = {
},
};
-#define MAX(x, y) (x > y ? x : y)
static struct resource bfin_plat_nand_resources = {
.start = 0x20212000,
- .end = 0x20212000 + (1 << MAX(BFIN_NAND_PLAT_CLE, BFIN_NAND_PLAT_ALE)),
+ .end = 0x20212000 + (1 << max(BFIN_NAND_PLAT_CLE, BFIN_NAND_PLAT_ALE)),
.flags = IORESOURCE_IO,
};
--
1.6.5.1.61.ge79999
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists