aboutsummaryrefslogtreecommitdiff
path: root/src/hci/commands/image_mem_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hci/commands/image_mem_cmd.c')
-rw-r--r--src/hci/commands/image_mem_cmd.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/hci/commands/image_mem_cmd.c b/src/hci/commands/image_mem_cmd.c
index 61d5053..c8bfab1 100644
--- a/src/hci/commands/image_mem_cmd.c
+++ b/src/hci/commands/image_mem_cmd.c
@@ -60,7 +60,6 @@ static struct command_descriptor imgmem_cmd =
*/
static int imgmem_exec ( int argc, char **argv ) {
struct imgmem_options opts;
- struct image *image;
unsigned int data;
unsigned int len;
int rc;
@@ -82,8 +81,7 @@ static int imgmem_exec ( int argc, char **argv ) {
return rc;
/* Create image */
- if ( ( rc = imgmem ( phys_to_user ( data ), len, opts.name,
- &image ) ) != 0 )
+ if ( ( rc = imgmem ( opts.name, phys_to_user ( data ), len ) ) != 0 )
return rc;
return 0;