qemu-e2k/hw
Markus Armbruster 118bfd76c9 qdev: Use returned bool to check for qdev_realize() etc. failure
Convert

    foo(..., &err);
    if (err) {
        ...
    }

to

    if (!foo(..., &err)) {
        ...
    }

for qdev_realize(), qdev_realize_and_unref(), qbus_realize() and their
wrappers isa_realize_and_unref(), pci_realize_and_unref(),
sysbus_realize(), sysbus_realize_and_unref(), usb_realize_and_unref().
Coccinelle script:

    @@
    identifier fun = {
        isa_realize_and_unref, pci_realize_and_unref, qbus_realize,
        qdev_realize, qdev_realize_and_unref, sysbus_realize,
        sysbus_realize_and_unref, usb_realize_and_unref
    };
    expression list args, args2;
    typedef Error;
    Error *err;
    @@
    -    fun(args, &err, args2);
    -    if (err)
    +    if (!fun(args, &err, args2))
         {
             ...
         }

Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information".  Nothing to convert there; skipped.

Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Converted manually.

A few line breaks tidied up manually.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Greg Kurz <groug@kaod.org>
Message-Id: <20200707160613.848843-5-armbru@redhat.com>
2020-07-10 15:01:06 +02:00
..
9pfs
acpi
adc
alpha
arm qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
audio
block qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
char qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
core qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
cpu qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
cris
display qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
dma
gpio
hppa
hyperv
i2c
i386
ide
input
intc qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
ipack
ipmi
isa qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
lm32
m68k
mem
microblaze qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
mips qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
misc qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
moxie
net
nios2
nubus
nvram
openrisc
pci
pci-bridge
pci-host qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
pcmcia
ppc qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
rdma
riscv qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
rtc
rx
s390x qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
scsi qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
sd qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
semihosting
sh4
smbios
sparc
sparc64
ssi
timer
tpm
tricore
unicore32
usb qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
vfio
virtio qdev: Use returned bool to check for qdev_realize() etc. failure 2020-07-10 15:01:06 +02:00
watchdog
xen
xenpv
xtensa
Kconfig
Makefile.objs