mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
Remove compile warnings in fpga code
Patch by Stefan Roese, 07 Oct 2006
This commit is contained in:
parent
f3443867e9
commit
77d5034847
2 changed files with 5 additions and 2 deletions
|
@ -263,9 +263,9 @@ int do_fpga (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
|
|||
puts ("Bad Magic Number\n");
|
||||
return 1;
|
||||
}
|
||||
data = (char *)(fpga_data + sizeof(image_header_t));
|
||||
data = ((ulong)fpga_data + sizeof(image_header_t));
|
||||
data_size = ntohl(hdr->ih_size);
|
||||
rc = fpga_load (dev, data, data_size);
|
||||
rc = fpga_load (dev, (void *)data, data_size);
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue