Module Name:    src
Committed By:   hannken
Date:           Thu Oct  3 12:58:10 UTC 2024

Modified Files:
        src/sys/dev/usb: ehci.c

Log Message:
Fix fallout from "struct ehci_qh_qtd_t" -> "ehci_qtd_t" conversion.

Kernels ALL/i386 and ALL/amd64 compile again.


To generate a diff of this commit:
cvs rdiff -u -r1.327 -r1.328 src/sys/dev/usb/ehci.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/usb/ehci.c
diff -u src/sys/dev/usb/ehci.c:1.327 src/sys/dev/usb/ehci.c:1.328
--- src/sys/dev/usb/ehci.c:1.327	Mon Sep 23 16:28:06 2024
+++ src/sys/dev/usb/ehci.c	Thu Oct  3 12:58:10 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: ehci.c,v 1.327 2024/09/23 16:28:06 skrll Exp $ */
+/*	$NetBSD: ehci.c,v 1.328 2024/10/03 12:58:10 hannken Exp $ */
 
 /*
  * Copyright (c) 2004-2012,2016,2020 The NetBSD Foundation, Inc.
@@ -54,7 +54,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.327 2024/09/23 16:28:06 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.328 2024/10/03 12:58:10 hannken Exp $");
 
 #include "ohci.h"
 #include "uhci.h"
@@ -294,7 +294,7 @@ void			ehci_dump(void);
 Static void		ehci_dump_regs(ehci_softc_t *);
 Static void		ehci_dump_sqtds(ehci_soft_qtd_t *);
 Static void		ehci_dump_sqtd(ehci_soft_qtd_t *);
-Static void		ehci_dump_qh_qtd(struct ehci_qh_qtd_t *);
+Static void		ehci_dump_qh_qtd(ehci_qtd_t *);
 Static void		ehci_dump_qtd(ehci_qtd_t *);
 Static void		ehci_dump_sqh(ehci_soft_qh_t *);
 Static void		ehci_dump_sitd(struct ehci_soft_itd *);
@@ -1771,7 +1771,7 @@ ehci_dump_sqtd(ehci_soft_qtd_t *sqtd)
 }
 
 Static void
-ehci_dump_qh_qtd(struct ehci_qh_qtd_t *qh_qtd)
+ehci_dump_qh_qtd(ehci_qtd_t *qh_qtd)
 {
 	ehci_qtd_t qtd = {
 		.qtd_next = qh_qtd->qtd_next,

Reply via email to