From: Sandeep Paulraj Date: Fri, 2 Oct 2009 00:22:09 +0000 (-0400) Subject: TI DaVinci DM365: Fix Compilation warning for DM365 EVM X-Git-Tag: v2009.11-rc1~12^2^2~20 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d884f64a7b8482f6c9688600e0a4731fa5678e0c;p=u-boot TI DaVinci DM365: Fix Compilation warning for DM365 EVM This patch fixes a compilation warning while compiling the DM365 EVM. Signed-off-by: Sandeep Paulraj --- diff --git a/board/davinci/dm365evm/dm365evm.c b/board/davinci/dm365evm/dm365evm.c index 5b97060539..1e3a14f490 100644 --- a/board/davinci/dm365evm/dm365evm.c +++ b/board/davinci/dm365evm/dm365evm.c @@ -79,8 +79,8 @@ int board_eth_init(bd_t *bis) static void nand_dm365evm_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);