qemu-e2k/backends
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 backends: Introduce chr-testdev 2014-08-06 17:53:05 +02:00
baum.c backends: Clean up includes 2016-02-04 17:01:04 +00:00
hostmem-file.c backends: Clean up includes 2016-02-04 17:01:04 +00:00
hostmem-ram.c backends: Clean up includes 2016-02-04 17:01:04 +00:00
hostmem.c qom: Swap 'name' next to visitor in ObjectPropertyAccessor 2016-02-08 17:29:56 +01:00
msmouse.c backends: Clean up includes 2016-02-04 17:01:04 +00:00
rng-egd.c backends: Clean up includes 2016-02-04 17:01:04 +00:00
rng-random.c backends: Clean up includes 2016-02-04 17:01:04 +00:00
rng.c backends: Clean up includes 2016-02-04 17:01:04 +00:00
testdev.c backends: Clean up includes 2016-02-04 17:01:04 +00:00
tpm.c backends: Clean up includes 2016-02-04 17:01:04 +00:00