diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2019-03-08 02:32:10 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2019-03-11 18:48:20 +0100 |
commit | 96f209b946e400d1cca3b86331570843ee4c6243 (patch) | |
tree | d01f77293fdfb3b636c1ae5c9307a5c6450aa6e4 /hw/nvram/fw_cfg.c | |
parent | a8df4845a093e79f9517da7a8e03937f85e9c6d9 (diff) | |
download | qemu-96f209b946e400d1cca3b86331570843ee4c6243.zip qemu-96f209b946e400d1cca3b86331570843ee4c6243.tar.gz qemu-96f209b946e400d1cca3b86331570843ee4c6243.tar.bz2 |
hw/nvram/fw_cfg: Remove the unnecessary boot_splash_filedata_size
The 'boot_splash_filedata_size' was introduced as a global variable
in 3d3b8303c6f. This variable is used as a 'size' argument to the
fw_cfg_add_file(). This function has an interface contract with its
'data' argument, but there is no such contract for 'size' (this is
not a referenced pointer). We can simply remove it.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Message-Id: <20190308013222.12524-7-philmd@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/nvram/fw_cfg.c')
-rw-r--r-- | hw/nvram/fw_cfg.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/nvram/fw_cfg.c b/hw/nvram/fw_cfg.c index 7fdf04a..13aab12 100644 --- a/hw/nvram/fw_cfg.c +++ b/hw/nvram/fw_cfg.c @@ -161,15 +161,14 @@ static void fw_cfg_bootsplash(FWCfgState *s) } g_free(boot_splash_filedata); boot_splash_filedata = (uint8_t *)file_data; - boot_splash_filedata_size = file_size; /* insert data */ if (file_type == JPG_FILE) { fw_cfg_add_file(s, "bootsplash.jpg", - boot_splash_filedata, boot_splash_filedata_size); + boot_splash_filedata, file_size); } else { fw_cfg_add_file(s, "bootsplash.bmp", - boot_splash_filedata, boot_splash_filedata_size); + boot_splash_filedata, file_size); } g_free(filename); } |