diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-07-09 12:11:04 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2012-07-26 17:44:08 +0200 |
commit | 038478370d5c7ed8f66fc9523bf3f60b8800fe86 (patch) | |
tree | 5a4bbb627a874b7fd98480e12a3ea4bc83620aff /hw | |
parent | 8f6e699ddbcad32480fa64796ccf44cbaf5b4b91 (diff) |
scsi-block: remove properties that are not relevant for passthrough
scsi-block is a passthrough device and does not allow customization
of vendor, product, removable, DPOFUA, block size or any other piece of
information. Thus, drop DEFINE_SCSI_DISK_PROPERTIES() from the
list of qdev properties.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/scsi-disk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/scsi-disk.c b/hw/scsi-disk.c index 525816cb7..8907197d5 100644 --- a/hw/scsi-disk.c +++ b/hw/scsi-disk.c @@ -2040,7 +2040,7 @@ static TypeInfo scsi_cd_info = { #ifdef __linux__ static Property scsi_block_properties[] = { - DEFINE_SCSI_DISK_PROPERTIES(), + DEFINE_PROP_DRIVE("drive", SCSIDiskState, qdev.conf.bs), DEFINE_PROP_END_OF_LIST(), }; |