]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
TI DaVinci DM355: Fix Compilation warning for DM355 EVM
authorSandeep Paulraj <s-paulraj@ti.com>
Fri, 2 Oct 2009 00:21:13 +0000 (20:21 -0400)
committerTom Rix <Tom.Rix@windriver.com>
Sun, 18 Oct 2009 21:42:21 +0000 (16:42 -0500)
This patch fixes a compilation warning while compiling
the DM355 EVM.

Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
board/davinci/dm355evm/dm355evm.c

index 0a44748320f31591e44287e158bc695528e87a6e..87f284c4cea251cb2076824f9e3e2b49b8e644d5 100644 (file)
@@ -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);