summaryrefslogtreecommitdiff
path: root/hw/fdc.h
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2011-02-12 22:25:26 +0000
committerBlue Swirl <blauwirbel@gmail.com>2011-02-20 09:34:06 +0000
commit17801c78fe01ddab7ae9092190d17cc77bd5ef66 (patch)
tree8943d68d588669fa050ce226f133fcfbbf1dbbcf /hw/fdc.h
parent63ffb564dca94f8bda01ed6d209784104630a4d2 (diff)
downloadqemu-17801c78fe01ddab7ae9092190d17cc77bd5ef66.tar.gz
fdc: make optional
Ignore failure with fdc device creation. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/fdc.h')
-rw-r--r--hw/fdc.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/fdc.h b/hw/fdc.h
index 3b2fb3b248..09f73c6a9f 100644
--- a/hw/fdc.h
+++ b/hw/fdc.h
@@ -11,7 +11,10 @@ static inline void fdctrl_init_isa(DriveInfo **fds)
{
ISADevice *dev;
- dev = isa_create("isa-fdc");
+ dev = isa_try_create("isa-fdc");
+ if (!dev) {
+ return;
+ }
if (fds[0]) {
qdev_prop_set_drive_nofail(&dev->qdev, "driveA", fds[0]->bdrv);
}