Hi,
> if (cpage > 4) {
> fprintf(stderr, "cpage out of range (%u)\n", cpage);
> +bytes = get_field(p->qtd.token, QTD_TOKEN_TBYTES);
> +offset = p->qtd.bufptr[0] & ~QTD_BUFPTR_MASK;
> +cpage = get_field(p->qtd.token, QTD_TOKEN_CPAGE);
>
On Thu, Jun 9, 2022, at 12:09, Gerd Hoffmann wrote:
> Hi,
>
> > if (cpage > 4) {
> > fprintf(stderr, "cpage out of range (%u)\n", cpage);
> > +bytes = get_field(p->qtd.token, QTD_TOKEN_TBYTES);
> > +offset = p->qtd.bufptr[0] & ~QTD_BUFPTR_MASK;
> >
Making it easier to diagnose what is going on when it happens
Signed-off-by: Arnout Engelen
---
hw/usb/hcd-ehci.c | 5 +
1 file changed, 5 insertions(+)
diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c
index 33a8a377bd..8e2f6578c2 100644
--- a/hw/usb/hcd-ehci.c
+++ b/hw/usb/hcd-ehci.c
@@