diff options
author | KONRAD Frederic <fred.konrad@greensocs.com> | 2013-04-30 16:08:49 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-05-03 12:05:15 -0500 |
commit | 11fc853c4cb5ab9db46d7859da191966199b588f (patch) | |
tree | 18d2200e15daf5dd2c99c32ff4d1daacd264e82b /hw/scsi/megasas.c | |
parent | 1034e9cf4d0740c4c845d79998ac53a5b23e534d (diff) | |
download | qemu-11fc853c4cb5ab9db46d7859da191966199b588f.tar.gz qemu-11fc853c4cb5ab9db46d7859da191966199b588f.tar.bz2 qemu-11fc853c4cb5ab9db46d7859da191966199b588f.zip |
scsi: add bus_name parameter to scsi_bus_new.
This adds the possibility to create a scsi-bus with a specified name.
Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Tested-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Message-id: 1367330931-12994-4-git-send-email-fred.konrad@greensocs.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/scsi/megasas.c')
-rw-r--r-- | hw/scsi/megasas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/scsi/megasas.c b/hw/scsi/megasas.c index 14b0552045..4934a815ce 100644 --- a/hw/scsi/megasas.c +++ b/hw/scsi/megasas.c @@ -2159,7 +2159,7 @@ static int megasas_scsi_init(PCIDevice *dev) s->frames[i].state = s; } - scsi_bus_new(&s->bus, &dev->qdev, &megasas_scsi_info); + scsi_bus_new(&s->bus, &dev->qdev, &megasas_scsi_info, NULL); scsi_bus_legacy_handle_cmdline(&s->bus); return 0; } |