]> git.proxmox.com Git - mirror_qemu.git/commitdiff
multiboot: Remove unused variables from multiboot.c
authorJack Schwartz <jack.schwartz@oracle.com>
Thu, 21 Dec 2017 17:25:16 +0000 (09:25 -0800)
committerKevin Wolf <kwolf@redhat.com>
Wed, 7 Mar 2018 10:53:35 +0000 (11:53 +0100)
Remove unused variables: mh_mode_type, mh_width, mh_height, mh_depth

Signed-off-by: Jack Schwartz <jack.schwartz@oracle.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
Reviewed-by: Prasad J Pandit <pjp@fedoraproject.org>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
hw/i386/multiboot.c

index bb8d8e462993f21bdbcd285ecfaf6a32c2fc6ad9..7d59cbe52332813f4a5732717954345023f66ee3 100644 (file)
@@ -255,12 +255,6 @@ int load_multiboot(FWCfgState *fw_cfg,
             mb_kernel_size = mb_load_size;
         }
 
-        /* Valid if mh_flags sets MULTIBOOT_HEADER_HAS_VBE.
-        uint32_t mh_mode_type = ldl_p(header+i+32);
-        uint32_t mh_width = ldl_p(header+i+36);
-        uint32_t mh_height = ldl_p(header+i+40);
-        uint32_t mh_depth = ldl_p(header+i+44); */
-
         mb_debug("multiboot: mh_header_addr = %#x\n", mh_header_addr);
         mb_debug("multiboot: mh_load_addr = %#x\n", mh_load_addr);
         mb_debug("multiboot: mh_load_end_addr = %#x\n", mh_load_end_addr);