diff options
author | Markus Armbruster <armbru@redhat.com> | 2009-10-07 01:15:58 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-07 08:54:54 -0500 |
commit | e23a1b33b53d25510320b26d9f154e19c6c99725 (patch) | |
tree | 2c0c5b9ac463c9e9ed745d1ea1837892cac139f3 /hw/mips_malta.c | |
parent | 33e66b86d89040f0a9e99aa53deb74ce8936a649 (diff) | |
download | qemu-e23a1b33b53d25510320b26d9f154e19c6c99725.zip |
New qdev_init_nofail()
Like qdev_init(), but terminate program via hw_error() instead of
returning an error value.
Use it instead of qdev_init() where terminating the program on failure
is okay, either because it's during machine construction, or because
we know that failure can't happen.
Because relying in the latter is somewhat unclean, and the former is
not always obvious, it would be nice to go back to qdev_init() in the
not-so-obvious cases, only with proper error handling. I'm leaving
that for another day, because it involves making sure that error
values are properly checked by all callers.
Patchworks-ID: 35168
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/mips_malta.c')
-rw-r--r-- | hw/mips_malta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mips_malta.c b/hw/mips_malta.c index d0266d5245..b26bbeeefa 100644 --- a/hw/mips_malta.c +++ b/hw/mips_malta.c @@ -933,7 +933,7 @@ void mips_malta_init (ram_addr_t ram_size, eeprom = qdev_create((BusState *)smbus, "smbus-eeprom"); qdev_prop_set_uint8(eeprom, "address", 0x50 + i); qdev_prop_set_ptr(eeprom, "data", eeprom_buf + (i * 256)); - qdev_init(eeprom); + qdev_init_nofail(eeprom); } pit = pit_init(0x40, isa_reserve_irq(0)); DMA_init(0); |