Markus Armbruster 0175ba109e arm: Clean up fragile use of error_is_set() in realize() methods
Using error_is_set(ERRP) to find out whether a function failed is
either wrong, fragile, or unnecessarily opaque.  It's wrong when ERRP
may be null, because errors go undetected when it is.  It's fragile
when proving ERRP non-null involves a non-local argument.  Else, it's
unnecessarily opaque (see commit 84d18f0).

I guess the error_is_set(errp) in the DeviceClass realize() methods
are merely fragile right now, because I can't find a call chain that
passes a null errp argument.

Make the code more robust and more obviously correct: receive the
error in a local variable, then propagate it through the parameter.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Andreas Färber <afaerber@suse.de>
2014-05-05 19:08:49 +02:00
..
2014-04-29 10:46:29 +02:00
2014-04-22 12:00:20 +02:00
2014-04-07 14:51:32 +01:00
2013-12-24 18:02:18 +01:00
2014-02-03 14:04:00 +00:00
2014-04-28 11:03:32 +02:00
2014-02-14 16:22:32 +01:00
2014-04-18 10:33:36 +04:00
2014-02-14 16:22:31 +01:00
2014-03-05 03:06:46 +01:00
2014-03-31 19:53:34 +01:00
2014-04-02 13:24:23 +02:00
2013-09-03 12:31:07 -05:00
2013-08-22 19:10:27 +02:00
2014-04-23 10:28:14 +02:00