mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
hw: move target-independent files to subdirectories
This patch tackles all files that are compiled once, moving them to subdirectories of hw/. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
ce3b494cb5
commit
49ab747f66
227 changed files with 205 additions and 208 deletions
23
hw/core/stream.c
Normal file
23
hw/core/stream.c
Normal file
|
@ -0,0 +1,23 @@
|
|||
#include "hw/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)
|
Loading…
Add table
Add a link
Reference in a new issue