[PATCH v2 2/2] usb: fastboot: Add missing newline in pr_err

2023-11-19 Thread Simon Holesch
Add missing newline in pr_err. Signed-off-by: Simon Holesch Reviewed-by: Marek Vasut --- Changes in v2: - add commit message body Thanks for the review! drivers/usb/gadget/f_fastboot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/gadget/f_fastboot.c b

[PATCH v2 1/2] usb: ci: Fix gadget reinit

2023-11-19 Thread Simon Holesch
lled, since the endpoint was primed with the old buffer. With the fastboot function this error led to the (rather confusing) error message "buffer overflow". Fixed by clearing the primed buffers with the `epflush` (`ENDPTFLUSH`) register. Signed-off-by: Simon Holesch Reviewed-by: Marek

[PATCH 2/2] usb: fastboot: Add missing newline in pr_err

2023-11-18 Thread Simon Holesch
Signed-off-by: Simon Holesch --- drivers/usb/gadget/f_fastboot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/gadget/f_fastboot.c b/drivers/usb/gadget/f_fastboot.c index 741775a7bc..9f322c9550 100644 --- a/drivers/usb/gadget/f_fastboot.c +++ b/drivers/usb

[PATCH 1/2] usb: ci: Fix gadget reinit

2023-11-18 Thread Simon Holesch
lled, since the endpoint was primed with the old buffer. With the fastboot function this error led to the (rather confusing) error message "buffer overflow". Fixed by clearing the primed buffers with the `epflush` (`ENDPTFLUSH`) register. Signed-off-by: Simon Holesch --- drivers