diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-10-12 12:57:59 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2011-10-28 19:25:52 +0200 |
commit | adcf2754b99dcab33c5c0c523eb3b970c1a24f6c (patch) | |
tree | fe2f0b9f20c18085778a83b8bfe3852ec8b71b73 /hw/scsi-generic.c | |
parent | 7877903aa0ef318017441c32605bc64650e6a326 (diff) |
scsi: make reqops const
Also delete a stale occurrence of SCSIReqOps inside SCSIDeviceInfo.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/scsi-generic.c')
-rw-r--r-- | hw/scsi-generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/scsi-generic.c b/hw/scsi-generic.c index fcf23cd8cd..a5e77cb109 100644 --- a/hw/scsi-generic.c +++ b/hw/scsi-generic.c @@ -420,7 +420,7 @@ static int scsi_generic_initfn(SCSIDevice *s) return 0; } -static SCSIReqOps scsi_generic_req_ops = { +static const SCSIReqOps scsi_generic_req_ops = { .size = sizeof(SCSIGenericReq), .free_req = scsi_free_request, .send_command = scsi_send_command, |