Ignore failure with serial device creation. Signed-off-by: Blue Swirl <[email protected]> --- hw/pc.h | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/hw/pc.h b/hw/pc.h
index 09f63f0..89b43ea 100644
--- a/hw/pc.h
+++ b/hw/pc.h
@@ -21,7 +21,10 @@ static inline bool serial_isa_init(int index,
CharDriverState *chr)
{
ISADevice *dev;
- dev = isa_create("isa-serial");
+ dev = isa_try_create("isa-serial");
+ if (!dev) {
+ return false;
+ }
qdev_prop_set_uint32(&dev->qdev, "index", index);
qdev_prop_set_chr(&dev->qdev, "chardev", chr);
if (qdev_init(&dev->qdev) < 0) {
--
1.6.2.4
0006-serial-make-optional.patch
Description: application/mbox
