pnv: Fix some error handling cpu realize()
commit937c2146a6694b5bc987c2fa89917db4acc9ae39
authorDavid Gibson <david@gibson.dropbear.id.au>
Wed, 13 Jun 2018 01:55:31 +0000 (13 11:55 +1000)
committerDavid Gibson <david@gibson.dropbear.id.au>
Sat, 16 Jun 2018 06:32:33 +0000 (16 16:32 +1000)
treeb19cbebc9eadcb77918088838c71b0ac288ba77e
parentb1d40d6e09c205dac108e0c21ec2fdaeb1bbaae8
pnv: Fix some error handling cpu realize()

In pnv_core_realize() we call two functions with an Error * parameter in
succession, which will go badly if they both cause errors.  In fact, a
failure in either of them indicates a qemu internal error, so we can just
use &error_abort in both cases.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Greg Kurz <groug@kaod.org>
hw/ppc/pnv_core.c