From: Luiz Capitulino Date: Fri, 1 Jul 2011 13:46:12 +0000 (-0300) Subject: block: drive_init(): Simplify interface type setting X-Git-Tag: qemu-xen-4.2.0~753^2~67 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2d3999fe13b5e4663fd8ffc3661b1ffd44130e55;p=qemu-xen.git block: drive_init(): Simplify interface type setting Signed-off-by: Luiz Capitulino Reviewed-by: Markus Armbruster Signed-off-by: Kevin Wolf --- diff --git a/blockdev.c b/blockdev.c index 7d579d6124..470be71cbf 100644 --- a/blockdev.c +++ b/blockdev.c @@ -240,14 +240,6 @@ DriveInfo *drive_init(QemuOpts *opts, int default_to_scsi) int ret; translation = BIOS_ATA_TRANSLATION_AUTO; - - if (default_to_scsi) { - type = IF_SCSI; - pstrcpy(devname, sizeof(devname), "scsi"); - } else { - type = IF_IDE; - pstrcpy(devname, sizeof(devname), "ide"); - } media = MEDIA_DISK; /* extract parameters */ @@ -273,7 +265,11 @@ DriveInfo *drive_init(QemuOpts *opts, int default_to_scsi) error_report("unsupported bus type '%s'", buf); return NULL; } + } else { + type = default_to_scsi ? IF_SCSI : IF_IDE; + pstrcpy(devname, sizeof(devname), if_name[type]); } + max_devs = if_max_devs[type]; if (cyls || heads || secs) {