From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Date: Fri, 02 Oct 2009 07:23:53 -0500 Subject: [U-Boot] [PATCH] TI DaVinci DM355: Fix Compilation warning for DM355 EVM In-Reply-To: <1254443362-1229-1-git-send-email-s-paulraj@ti.com> References: <1254443362-1229-1-git-send-email-s-paulraj@ti.com> Message-ID: <4AC5F0D9.2020706@windriver.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de s-paulraj at ti.com wrote: > From: Sandeep Paulraj > > This patch fixes a compilation warning while compiling > the DM355 EVM. > > Signed-off-by: Sandeep Paulraj > --- > board/davinci/dm355evm/dm355evm.c | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/board/davinci/dm355evm/dm355evm.c b/board/davinci/dm355evm/dm355evm.c > index 0a44748..87f284c 100644 > --- a/board/davinci/dm355evm/dm355evm.c > +++ b/board/davinci/dm355evm/dm355evm.c > @@ -92,8 +92,8 @@ int board_eth_init(bd_t *bis) > static void nand_dm355evm_select_chip(struct mtd_info *mtd, int chip) > { > struct nand_chip *this = mtd->priv; > - u32 wbase = (u32) this->IO_ADDR_W; > - u32 rbase = (u32) this->IO_ADDR_R; > + unsigned long wbase = (unsigned long) this->IO_ADDR_W; > + unsigned long rbase = (unsigned long) this->IO_ADDR_R; > > if (chip == 1) { > __set_bit(14, &wbase); Ack-ed. Tom