[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC PATCH 09/35] hw/display/ramfb: Emit warning when old code is used
From: |
Philippe Mathieu-Daudé |
Subject: |
[RFC PATCH 09/35] hw/display/ramfb: Emit warning when old code is used |
Date: |
Mon, 8 Jun 2020 18:00:18 +0200 |
This code hasn't been QOM'ified yet. Warn the user.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
hw/display/ramfb.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/hw/display/ramfb.c b/hw/display/ramfb.c
index 79b9754a58..a4a427e5c7 100644
--- a/hw/display/ramfb.c
+++ b/hw/display/ramfb.c
@@ -18,6 +18,7 @@
#include "hw/display/bochs-vbe.h" /* for limits */
#include "ui/console.h"
#include "sysemu/reset.h"
+#include "hw/qdev-deprecated.h"
struct QEMU_PACKED RAMFBCfg {
uint64_t addr;
@@ -120,6 +121,8 @@ RAMFBState *ramfb_setup(Error **errp)
FWCfgState *fw_cfg = fw_cfg_find();
RAMFBState *s;
+ qdev_warn_deprecated_function_used();
+
if (!fw_cfg || !fw_cfg->dma_enabled) {
error_setg(errp, "ramfb device requires fw_cfg with DMA");
return NULL;
--
2.21.3
- [RFC PATCH 00/35] hw/qdev: Warn when using pre-qdev/QOM devices, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 01/35] qom/object: Update documentation, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 02/35] hw/core/qdev: Add qdev_warn_deprecated_function_used() helper, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 03/35] hw/arm/omap: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 06/35] hw/timer/arm_timer: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 07/35] hw/char/parallel: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 08/35] hw/display/blizzard: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 10/35] hw/display/tc6393xb: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 09/35] hw/display/ramfb: Emit warning when old code is used,
Philippe Mathieu-Daudé <=
- [RFC PATCH 11/35] hw/display/vga-isa-mm: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 12/35] hw/dma/etraxfs_dma: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 04/35] hw/arm/pxa2xx: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 05/35] hw/arm/nseries: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 14/35] hw/i386/pc: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 15/35] hw/i386/xen/xen-hvm: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08
- [RFC PATCH 13/35] hw/dma/soc_dma: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08