diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2011-04-22 09:39:16 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2011-05-26 12:14:17 +0200 |
| commit | 42741212ebe703a5b9273475e7c65829b8fa2e51 (patch) | |
| tree | 6e8c42138846f8aac2474b4ac6333642f2eb560e /hw/scsi.h | |
| parent | efb9ee024845982a210bfe48a73298846adfe9da (diff) | |
| download | focaccia-qemu-42741212ebe703a5b9273475e7c65829b8fa2e51.tar.gz focaccia-qemu-42741212ebe703a5b9273475e7c65829b8fa2e51.zip | |
scsi: make write_data return void
The return value is unused anyway. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'hw/scsi.h')
| -rw-r--r-- | hw/scsi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/scsi.h b/hw/scsi.h index 5730faa553..b56338d72a 100644 --- a/hw/scsi.h +++ b/hw/scsi.h @@ -77,7 +77,7 @@ struct SCSIDeviceInfo { void (*free_req)(SCSIRequest *req); int32_t (*send_command)(SCSIRequest *req, uint8_t *buf); void (*read_data)(SCSIRequest *req); - int (*write_data)(SCSIRequest *req); + void (*write_data)(SCSIRequest *req); void (*cancel_io)(SCSIRequest *req); uint8_t *(*get_buf)(SCSIRequest *req); int (*get_sense)(SCSIRequest *req, uint8_t *buf, int len); |