diff options
author | Sandeep Paulraj <s-paulraj@ti.com> | 2009-10-01 20:21:13 -0400 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2009-10-18 16:42:21 -0500 |
commit | 6fe5e87be4b944edf428835210056e020c8bb794 (patch) | |
tree | d9a8cd3f3afa284cc44211a2ca021092111c45e4 /board/davinci | |
parent | 513bbe1b1720682e6de0aba2d9db5e60f3a428bb (diff) | |
download | u-boot-6fe5e87be4b944edf428835210056e020c8bb794.tar.gz u-boot-6fe5e87be4b944edf428835210056e020c8bb794.tar.xz u-boot-6fe5e87be4b944edf428835210056e020c8bb794.zip |
TI DaVinci DM355: Fix Compilation warning for DM355 EVM
This patch fixes a compilation warning while compiling
the DM355 EVM.
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'board/davinci')
-rw-r--r-- | 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 0a44748320..87f284c4ce 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); |