[PATCH v2 0/3] hw/misc: Replace DPRINTF with trace events for imx_ccm

jack wang posted 3 patches 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20260625160144.94565-1-163wangjack@gmail.com
Maintainers: Peter Maydell <peter.maydell@linaro.org>, Jean-Christophe Dubois <jcd@tribudubois.net>
hw/misc/imx25_ccm.c  | 36 +++++++++++-------------------------
hw/misc/imx31_ccm.c  | 33 ++++++++++-----------------------
hw/misc/imx_ccm.c    | 18 +++---------------
hw/misc/trace-events | 23 +++++++++++++++++++++++
4 files changed, 47 insertions(+), 63 deletions(-)
[PATCH v2 0/3] hw/misc: Replace DPRINTF with trace events for imx_ccm
Posted by jack wang 1 month ago
This series replaces DPRINTF macros with trace events for imx_ccm, imx25_ccm and imx31_ccm.

v2 changes(based on feedback from v1 reviewer):
- Added missing Signed-off-by tags.
- Fixed code style space issue in imx_ccm.
- Dropped unnecessary uint32_t cast in imx25_ccm.


jack wang (3):
  hw/misc/imx_ccm: Replace DPRINTF with trace events
  hw/misc/imx25_ccm: Replace DPRINTF with trace events
  hw/misc/imx31_ccm: Replace DPRINTF with trace events

 hw/misc/imx25_ccm.c  | 36 +++++++++++-------------------------
 hw/misc/imx31_ccm.c  | 33 ++++++++++-----------------------
 hw/misc/imx_ccm.c    | 18 +++---------------
 hw/misc/trace-events | 23 +++++++++++++++++++++++
 4 files changed, 47 insertions(+), 63 deletions(-)

-- 
2.53.0
Re: [PATCH v2 0/3] hw/misc: Replace DPRINTF with trace events for imx_ccm
Posted by Peter Maydell 1 month ago
On Thu, 25 Jun 2026 at 17:02, jack wang <163wangjack@gmail.com> wrote:
>
> This series replaces DPRINTF macros with trace events for imx_ccm, imx25_ccm and imx31_ccm.
>
> v2 changes(based on feedback from v1 reviewer):
> - Added missing Signed-off-by tags.
> - Fixed code style space issue in imx_ccm.
> - Dropped unnecessary uint32_t cast in imx25_ccm.
>
>
> jack wang (3):
>   hw/misc/imx_ccm: Replace DPRINTF with trace events
>   hw/misc/imx25_ccm: Replace DPRINTF with trace events
>   hw/misc/imx31_ccm: Replace DPRINTF with trace events

I reviewed these but you have dropped all my
Reviewed-by tags...

https://www.qemu.org/docs/master/devel/submitting-a-patch.html#proper-use-of-reviewed-by-tags-can-aid-review

-- PMM