From e23a1b33b53d25510320b26d9f154e19c6c99725 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Wed, 7 Oct 2009 01:15:58 +0200 Subject: 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 Signed-off-by: Anthony Liguori --- hw/arm_sysctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/arm_sysctl.c') diff --git a/hw/arm_sysctl.c b/hw/arm_sysctl.c index 26300ef8a..72c7ccbe3 100644 --- a/hw/arm_sysctl.c +++ b/hw/arm_sysctl.c @@ -212,7 +212,7 @@ void arm_sysctl_init(uint32_t base, uint32_t sys_id) dev = qdev_create(NULL, "realview_sysctl"); qdev_prop_set_uint32(dev, "sys_id", sys_id); - qdev_init(dev); + qdev_init_nofail(dev); sysbus_mmio_map(sysbus_from_qdev(dev), 0, base); } -- cgit v1.2.3