diff options
author | Markus Armbruster <armbru@redhat.com> | 2011-09-06 18:58:52 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2011-09-12 15:17:21 +0200 |
commit | 9e6a4c9177bc95aa04438458d75442e80db9ad33 (patch) | |
tree | eee4af4845c084f5a78fe0cea533565b9c85198f /blockdev.c | |
parent | 2c6942fa7b332a95286071b92d233853e1000948 (diff) |
block: Drop BlockDriverState member removable
It's a confused mess (see previous commit). No users remain.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'blockdev.c')
-rw-r--r-- | blockdev.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/blockdev.c b/blockdev.c index ddf1f8fb7b..154cc8456e 100644 --- a/blockdev.c +++ b/blockdev.c @@ -473,17 +473,12 @@ DriveInfo *drive_init(QemuOpts *opts, int default_to_scsi) } break; case MEDIA_CDROM: - bdrv_set_removable(dinfo->bdrv, 1); dinfo->media_cd = 1; break; } break; case IF_SD: - /* FIXME: This isn't really a floppy, but it's a reasonable - approximation. */ case IF_FLOPPY: - bdrv_set_removable(dinfo->bdrv, 1); - break; case IF_PFLASH: case IF_MTD: break; |