virtio-gpu: remove unused config_size
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Christophe Fergeau <cfergeau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 20190221114330.17968-3-marcandre.lureau@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
		
							parent
							
								
									836682bc03
								
							
						
					
					
						commit
						4a9102c5eb
					
				@ -1238,10 +1238,9 @@ static void virtio_gpu_device_realize(DeviceState *qdev, Error **errp)
 | 
				
			|||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    g->config_size = sizeof(struct virtio_gpu_config);
 | 
					 | 
				
			||||||
    g->virtio_config.num_scanouts = cpu_to_le32(g->conf.max_outputs);
 | 
					    g->virtio_config.num_scanouts = cpu_to_le32(g->conf.max_outputs);
 | 
				
			||||||
    virtio_init(VIRTIO_DEVICE(g), "virtio-gpu", VIRTIO_ID_GPU,
 | 
					    virtio_init(VIRTIO_DEVICE(g), "virtio-gpu", VIRTIO_ID_GPU,
 | 
				
			||||||
                g->config_size);
 | 
					                sizeof(struct virtio_gpu_config));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    g->req_state[0].width = g->conf.xres;
 | 
					    g->req_state[0].width = g->conf.xres;
 | 
				
			||||||
    g->req_state[0].height = g->conf.yres;
 | 
					    g->req_state[0].height = g->conf.yres;
 | 
				
			||||||
 | 
				
			|||||||
@ -96,8 +96,6 @@ typedef struct VirtIOGPU {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    int enable;
 | 
					    int enable;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int config_size;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    QTAILQ_HEAD(, virtio_gpu_simple_resource) reslist;
 | 
					    QTAILQ_HEAD(, virtio_gpu_simple_resource) reslist;
 | 
				
			||||||
    QTAILQ_HEAD(, virtio_gpu_ctrl_command) cmdq;
 | 
					    QTAILQ_HEAD(, virtio_gpu_ctrl_command) cmdq;
 | 
				
			||||||
    QTAILQ_HEAD(, virtio_gpu_ctrl_command) fenceq;
 | 
					    QTAILQ_HEAD(, virtio_gpu_ctrl_command) fenceq;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user