public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] TI: DaVinci DM355: Fix Compilation warning
@ 2009-09-29  1:21 s-paulraj at ti.com
  2009-09-29 12:24 ` Tom
  0 siblings, 1 reply; 2+ messages in thread
From: s-paulraj at ti.com @ 2009-09-29  1:21 UTC (permalink / raw)
  To: u-boot

From: Sandeep Paulraj <s-paulraj@ti.com>

This patch fixes a compilation warning while building DM355

Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
---
 board/davinci/dm355evm/dm355evm.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/board/davinci/dm355evm/dm355evm.c b/board/davinci/dm355evm/dm355evm.c
index 0a44748..5dd3b0d 100644
--- a/board/davinci/dm355evm/dm355evm.c
+++ b/board/davinci/dm355evm/dm355evm.c
@@ -96,11 +96,11 @@ static void nand_dm355evm_select_chip(struct mtd_info *mtd, int chip)
 	u32			rbase = (u32) this->IO_ADDR_R;
 
 	if (chip == 1) {
-		__set_bit(14, &wbase);
-		__set_bit(14, &rbase);
+		__set_bit(14, (void *)&wbase);
+		__set_bit(14, (void *)&rbase);
 	} else {
-		__clear_bit(14, &wbase);
-		__clear_bit(14, &rbase);
+		__clear_bit(14, (void *)&wbase);
+		__clear_bit(14, (void *)&rbase);
 	}
 	this->IO_ADDR_W = (void *)wbase;
 	this->IO_ADDR_R = (void *)rbase;
-- 
1.6.0.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-09-29 12:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-29  1:21 [U-Boot] [PATCH] TI: DaVinci DM355: Fix Compilation warning s-paulraj at ti.com
2009-09-29 12:24 ` Tom

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox