diff options
author | Markus Armbruster <armbru@redhat.com> | 2010-05-28 13:32:45 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2010-07-06 17:05:49 +0200 |
commit | cd8722bb22ed41586ef489b3521173f1a80c9357 (patch) | |
tree | 366c0d832a47d035ee6c18d62aebc7bc24c9815b /hw/ide/macio.c | |
parent | f597627ff5eb683501d65cf169f467bb4e894626 (diff) | |
download | qemu-cd8722bb22ed41586ef489b3521173f1a80c9357.zip |
ide: Replace IDEState members is_cdrom, is_cf by drive_kind
The two aren't independent variables. Make that obvious.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/ide/macio.c')
-rw-r--r-- | hw/ide/macio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ide/macio.c b/hw/ide/macio.c index f76c0fa31c..539c067b00 100644 --- a/hw/ide/macio.c +++ b/hw/ide/macio.c @@ -162,7 +162,7 @@ static void pmac_ide_transfer(DBDMA_io *io) IDEState *s = idebus_active_if(&m->bus); s->io_buffer_size = 0; - if (s->is_cdrom) { + if (s->drive_kind == IDE_CD) { pmac_ide_atapi_transfer_cb(io, 0); return; } |