devices: disk: drop dead s390 check

The scsi check above will always trigger for s390, so this path won't
ever be hit
This commit is contained in:
Cole Robinson 2019-03-08 11:40:08 -05:00
parent 32034c6847
commit 18e60c5e47

View File

@ -962,8 +962,6 @@ class DeviceDisk(Device):
return "sd"
if guest.os.is_q35():
return "sata"
if self.is_cdrom() and guest.os.is_s390x():
return "scsi"
return "ide"
def set_defaults(self, guest):