CVS commit: src/sys/external/bsd/dwc2/dist

2023-04-09 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Apr 9 12:31:10 UTC 2023 Modified Files: src/sys/external/bsd/dwc2/dist: dwc2_hcdddma.c Log Message: dwc2: KASSERT(A && B) -> KASSERT(A); KASSERT(B) To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/ex

CVS commit: src/sys/external/bsd/dwc2/dist

2023-04-09 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Apr 9 12:31:10 UTC 2023 Modified Files: src/sys/external/bsd/dwc2/dist: dwc2_hcdddma.c Log Message: dwc2: KASSERT(A && B) -> KASSERT(A); KASSERT(B) To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/ex

CVS commit: src/sys/external/bsd/dwc2

2022-03-18 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Fri Mar 18 23:32:59 UTC 2022 Modified Files: src/sys/external/bsd/dwc2: dwc2.h Log Message: dwc2: Use getticks(), not hardclock_ticks. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/external/bsd/dwc2/dw

CVS commit: src/sys/external/bsd/dwc2

2022-03-18 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Fri Mar 18 23:32:59 UTC 2022 Modified Files: src/sys/external/bsd/dwc2: dwc2.h Log Message: dwc2: Use getticks(), not hardclock_ticks. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/external/bsd/dwc2/dw

CVS commit: src/sys/external/bsd/dwc2/conf

2021-12-20 Thread Simon Burge
Module Name:src Committed By: simonb Date: Mon Dec 20 11:54:33 UTC 2021 Modified Files: src/sys/external/bsd/dwc2/conf: files.dwc2 Log Message: Explicitly use -I$S/external/bsd/dwc2/dist for dwc2 instead of possibly getting that include path via DRM. Fixes evbmips cavium

CVS commit: src/sys/external/bsd/dwc2/conf

2021-12-20 Thread Simon Burge
Module Name:src Committed By: simonb Date: Mon Dec 20 11:54:33 UTC 2021 Modified Files: src/sys/external/bsd/dwc2/conf: files.dwc2 Log Message: Explicitly use -I$S/external/bsd/dwc2/dist for dwc2 instead of possibly getting that include path via DRM. Fixes evbmips cavium

CVS commit: src/sys/external/bsd/dwc2/dist

2019-07-14 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sun Jul 14 13:55:43 UTC 2019 Modified Files: src/sys/external/bsd/dwc2/dist: dwc2_hcd.c Log Message: Fix error path, kmem_free doesn't allow NULL pointers. Fix compilation with CONFIG_USB_DWC2_TRACK_MISSED_SOFS. To generate a d

CVS commit: src/sys/external/bsd/dwc2/dist

2019-07-14 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sun Jul 14 13:55:43 UTC 2019 Modified Files: src/sys/external/bsd/dwc2/dist: dwc2_hcd.c Log Message: Fix error path, kmem_free doesn't allow NULL pointers. Fix compilation with CONFIG_USB_DWC2_TRACK_MISSED_SOFS. To generate a d

Re: CVS commit: src/sys/external/bsd/dwc2

2015-08-23 Thread Christos Zoulas
In article <20150823111508.9f09...@cvs.netbsd.org>, Nick Hudson wrote: >-=-=-=-=-=- > >+ if (xfer->status == USBD_NORMAL_COMPLETION) { >+ int rd = usbd_xfer_isread(xfer); >+ >+ /* >+ * control transfers with no data phase don't touch dmabuf, but >+

Re: CVS commit: src/sys/external/bsd/dwc2/dist

2014-07-26 Thread Takahiro HAYASHI
(07/26/14 18:18), Nick Hudson wrote: Log Message: Recover from channel halt errors by using the 3 strikes xacterr rule. Adapted from the RaspberryPI linux driver. This allows the rum(4) I was sent to be somewhat usable. Need to investigate further what is causing the problem in the first place.

Re: CVS commit: src/sys/external/bsd/dwc2

2013-11-28 Thread Nick Hudson
On 11/28/13 06:56, Nick Hudson wrote: Module Name:src Committed By: skrll Date: Thu Nov 28 06:56:36 UTC 2013 Modified Files: src/sys/external/bsd/dwc2: dwc2.c Log Message: Drop the intr_lock when calling usb_schedsoftintr so that we don't lock against ourself in dwc2_sof