mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
virtio-scsi: don't use pointer for configuration.
The configuration field must not be a pointer as it will be used for virtio-scsi properties. So *conf is replaced by conf. Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Tested-by: Cornelia Huck <cornelia.huck@de.ibm.com> Message-id: 1363875320-7985-2-git-send-email-fred.konrad@greensocs.com Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
2fd1a053e3
commit
394e2e4c59
2 changed files with 8 additions and 8 deletions
|
@ -35,7 +35,7 @@ struct VirtIOSCSIConf {
|
|||
typedef struct VirtIOSCSI {
|
||||
VirtIODevice vdev;
|
||||
DeviceState *qdev;
|
||||
VirtIOSCSIConf *conf;
|
||||
VirtIOSCSIConf conf;
|
||||
|
||||
SCSIBus bus;
|
||||
uint32_t sense_size;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue