Skip to content
Snippets Groups Projects
Commit 77d50348 authored by Stefan Roese's avatar Stefan Roese
Browse files

Remove compile warnings in fpga code

Patch by Stefan Roese, 07 Oct 2006
parent f3443867
Branches
Tags
No related merge requests found
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4: Changes since U-Boot 1.1.4:
====================================================================== ======================================================================
* Remove compile warnings in fpga code
Patch by Stefan Roese, 07 Oct 2006
* Add CONFIG_BOARD_RESET to configure board specific reset function * Add CONFIG_BOARD_RESET to configure board specific reset function
Patch by Stefan Roese, 07 Oct 2006 Patch by Stefan Roese, 07 Oct 2006
......
...@@ -263,9 +263,9 @@ int do_fpga (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) ...@@ -263,9 +263,9 @@ int do_fpga (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
puts ("Bad Magic Number\n"); puts ("Bad Magic Number\n");
return 1; return 1;
} }
data = (char *)(fpga_data + sizeof(image_header_t)); data = ((ulong)fpga_data + sizeof(image_header_t));
data_size = ntohl(hdr->ih_size); data_size = ntohl(hdr->ih_size);
rc = fpga_load (dev, data, data_size); rc = fpga_load (dev, (void *)data, data_size);
} }
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment