mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 06:30:39 +00:00
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>
This commit is contained in:
parent
513bbe1b17
commit
6fe5e87be4
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue