[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [RFC PATCH 06/35] hw/timer/arm_timer: Emit warning when old code is
From: |
Paolo Bonzini |
Subject: |
Re: [RFC PATCH 06/35] hw/timer/arm_timer: Emit warning when old code is used |
Date: |
Tue, 9 Jun 2020 13:10:10 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.6.0 |
On 08/06/20 18:00, Philippe Mathieu-Daudé wrote:
> This code hasn't been QOM'ified yet. Warn the user.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
> hw/timer/arm_timer.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/hw/timer/arm_timer.c b/hw/timer/arm_timer.c
> index 9607366d78..e23e6b4b31 100644
> --- a/hw/timer/arm_timer.c
> +++ b/hw/timer/arm_timer.c
> @@ -16,6 +16,7 @@
> #include "hw/qdev-properties.h"
> #include "qemu/module.h"
> #include "qemu/log.h"
> +#include "hw/qdev-deprecated.h"
>
> /* Common timer implementation. */
>
> @@ -175,6 +176,8 @@ static arm_timer_state *arm_timer_init(uint32_t freq)
> {
> arm_timer_state *s;
>
> + qdev_warn_deprecated_function_used();
> +
> s = (arm_timer_state *)g_malloc0(sizeof(arm_timer_state));
> s->freq = freq;
> s->control = TIMER_CTRL_IE;
>
This one is okay, the devices that use arm_timer_init are all QOM.
Paolo
- [RFC PATCH 00/35] hw/qdev: Warn when using pre-qdev/QOM devices, 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 01/35] qom/object: Update documentation, 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 07/35] hw/char/parallel: 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
- Re: [RFC PATCH 06/35] hw/timer/arm_timer: Emit warning when old code is used,
Paolo Bonzini <=
- [RFC PATCH 08/35] hw/display/blizzard: 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é, 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 11/35] hw/display/vga-isa-mm: 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 12/35] hw/dma/etraxfs_dma: 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 13/35] hw/dma/soc_dma: Emit warning when old code is used, Philippe Mathieu-Daudé, 2020/06/08