mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
8c43a6f05d
Since 39bffca203
(qdev: register all
types natively through QEMU Object Model), TypeInfo as used in
the common, non-iterative pattern is no longer amended with information
and should therefore be const.
Fix the documented QOM examples:
sed -i 's/static TypeInfo/static const TypeInfo/g' include/qom/object.h
Since frequently the wrong examples are being copied by contributors of
new devices, fix all types in the tree:
sed -i 's/^static TypeInfo/static const TypeInfo/g' */*.c
sed -i 's/^static TypeInfo/static const TypeInfo/g' */*/*.c
This also avoids to piggy-back these changes onto real functional
changes or other refactorings.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
23 lines
501 B
C
23 lines
501 B
C
#include "stream.h"
|
|
|
|
void
|
|
stream_push(StreamSlave *sink, uint8_t *buf, size_t len, uint32_t *app)
|
|
{
|
|
StreamSlaveClass *k = STREAM_SLAVE_GET_CLASS(sink);
|
|
|
|
k->push(sink, buf, len, app);
|
|
}
|
|
|
|
static const TypeInfo stream_slave_info = {
|
|
.name = TYPE_STREAM_SLAVE,
|
|
.parent = TYPE_INTERFACE,
|
|
.class_size = sizeof(StreamSlaveClass),
|
|
};
|
|
|
|
|
|
static void stream_slave_register_types(void)
|
|
{
|
|
type_register_static(&stream_slave_info);
|
|
}
|
|
|
|
type_init(stream_slave_register_types)
|