mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:10 +00:00
Move compat properties API definitions to their own file unit, compile it only when system emulation is configured. Add a pair of stubs for user emulation. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Michael Tokarev <mjt@tls.msk.ru> Message-Id: <20260325151728.45378-6-philmd@linaro.org>
15 lines
257 B
C
15 lines
257 B
C
/*
|
|
* QEMU Object Model (compat properties stubs for user emulation)
|
|
*
|
|
* Copyright (c) Linaro
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qom/compat-properties.h"
|
|
|
|
void object_apply_compat_props(Object *obj)
|
|
{
|
|
}
|