qemu-e2k/hw/acpi
Eric Blake d7bce9999d qom: Swap 'name' next to visitor in ObjectPropertyAccessor
Similar to the previous patch, it's nice to have all functions
in the tree that involve a visitor and a name for conversion to
or from QAPI to consistently stick the 'name' parameter next
to the Visitor parameter.

Done by manually changing include/qom/object.h and qom/object.c,
then running this Coccinelle script and touching up the fallout
(Coccinelle insisted on adding some trailing whitespace).

    @ rule1 @
    identifier fn;
    typedef Object, Visitor, Error;
    identifier obj, v, opaque, name, errp;
    @@
     void fn
    - (Object *obj, Visitor *v, void *opaque, const char *name,
    + (Object *obj, Visitor *v, const char *name, void *opaque,
       Error **errp) { ... }

    @@
    identifier rule1.fn;
    expression obj, v, opaque, name, errp;
    @@
     fn(obj, v,
    -   opaque, name,
    +   name, opaque,
        errp)

Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <1454075341-13658-20-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2016-02-08 17:29:56 +01:00
..
Makefile.objs pc: acpi: cpuhp: move CPEJ() method to SSDT 2016-01-09 23:20:17 +02:00
acpi_interface.c x86: Clean up includes 2016-01-29 15:07:22 +00:00
aml-build.c acpi: expose oem_id and oem_table_id in build_rsdt() 2016-02-06 20:44:10 +02:00
bios-linker-loader.c x86: Clean up includes 2016-01-29 15:07:22 +00:00
core.c qapi: Swap visit_* arguments for consistent 'name' placement 2016-02-08 17:29:56 +01:00
cpu_hotplug.c log: do not unnecessarily include qom/cpu.h 2016-02-03 09:19:10 +00:00
cpu_hotplug_acpi_table.c x86: Clean up includes 2016-01-29 15:07:22 +00:00
ich9.c qom: Swap 'name' next to visitor in ObjectPropertyAccessor 2016-02-08 17:29:56 +01:00
memory_hotplug.c x86: Clean up includes 2016-01-29 15:07:22 +00:00
memory_hotplug_acpi_table.c x86: Clean up includes 2016-01-29 15:07:22 +00:00
nvdimm.c acpi: take oem_id in build_header(), optionally 2016-02-06 20:44:10 +02:00
pcihp.c x86: Clean up includes 2016-01-29 15:07:22 +00:00
piix4.c x86: Clean up includes 2016-01-29 15:07:22 +00:00
tco.c x86: Clean up includes 2016-01-29 15:07:22 +00:00