Re: [PATCH v3] hw/usb/hcd-ehci: Fix debug printf format string

2025-01-30 Thread Philippe Mathieu-Daudé
On 24/1/25 13:47, BALATON Zoltan wrote: The variable is uint64_t so needs %PRIu64 instead of %d. Fixes: 3ae7eb88c47 ("ehci: fix overflow in frame timer code") Signed-off-by: BALATON Zoltan Reviewed-by: Peter Maydell --- v3: Fixed commit message to match what the patch actually does hw/usb/h

Re: [PATCH v3] hw/usb/hcd-ehci: Fix debug printf format string

2025-01-24 Thread Philippe Mathieu-Daudé
On 24/1/25 13:47, BALATON Zoltan wrote: The variable is uint64_t so needs %PRIu64 instead of %d. Fixes: 3ae7eb88c47 ("ehci: fix overflow in frame timer code") Signed-off-by: BALATON Zoltan Reviewed-by: Peter Maydell --- v3: Fixed commit message to match what the patch actually does hw/usb/h

[PATCH v3] hw/usb/hcd-ehci: Fix debug printf format string

2025-01-24 Thread BALATON Zoltan
The variable is uint64_t so needs %PRIu64 instead of %d. Fixes: 3ae7eb88c47 ("ehci: fix overflow in frame timer code") Signed-off-by: BALATON Zoltan Reviewed-by: Peter Maydell --- v3: Fixed commit message to match what the patch actually does hw/usb/hcd-ehci.c | 3 ++- 1 file changed, 2 insert