This code hasn't been QOM'ified yet. Warn the user.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
hw/input/tsc2005.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/hw/input/tsc2005.c b/hw/input/tsc2005.c
index 55d61cc843..1f97b82379 100644
--- a/hw/input/tsc2005.c
+++ b/hw/input/tsc2005.c
@@ -27,6 +27,7 @@
#include "hw/irq.h"
#include "migration/vmstate.h"
#include "trace.h"
+#include "hw/qdev-deprecated.h"
#define TSC_CUT_RESOLUTION(value, p) ((value) >> (16 - (p ? 12 : 10)))
@@ -489,6 +490,8 @@ void *tsc2005_init(qemu_irq pintdav)
{
TSC2005State *s;
+ qdev_warn_deprecated_function_used();
+
s = (TSC2005State *)
g_malloc0(sizeof(TSC2005State));
s->x = 400;
--
2.21.3