]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
usb: dwc3: add newlines to dev_vdbg calls in ep0
authorCaleb Connolly <caleb.connolly@linaro.org>
Tue, 18 Jun 2024 15:03:43 +0000 (17:03 +0200)
committerMarek Vasut <marex@denx.de>
Wed, 19 Jun 2024 04:15:37 +0000 (06:15 +0200)
For some reason none of these debug prints have newlines, resulting in a
"fun" surprise when attempting to debug this driver.

The other parts of the dwc3 driver have newlines, add them here too (and
fix some minor nearby indent issues to make checkpatch happy).

Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
Reviewed-by: Marek Vasut <marex@denx.de>
drivers/usb/dwc3/ep0.c

index 1133cf82b1ae176267ef6e82f1f71176fc8d71a5..16b11ce3d9fa23e654d76597505cb2cd6d56efb5 100644 (file)
@@ -61,7 +61,7 @@ static int dwc3_ep0_start_trans(struct dwc3 *dwc, u8 epnum, dma_addr_t buf_dma,
 
        dep = dwc->eps[epnum];
        if (dep->flags & DWC3_EP_BUSY) {
-               dev_vdbg(dwc->dev, "%s still busy", dep->name);
+               dev_vdbg(dwc->dev, "%s still busy\n", dep->name);
                return 0;
        }
 
@@ -238,9 +238,9 @@ int dwc3_gadget_ep0_queue(struct usb_ep *ep, struct usb_request *request,
                goto out;
        }
 
-       dev_vdbg(dwc->dev, "queueing request %p to %s length %d state '%s'",
-                       request, dep->name, request->length,
-                       dwc3_ep0_state_string(dwc->ep0state));
+       dev_vdbg(dwc->dev, "queueing request %p to %s length %d state '%s\n'",
+                request, dep->name, request->length,
+                dwc3_ep0_state_string(dwc->ep0state));
 
        ret = __dwc3_gadget_ep0_queue(dep, req);
 
@@ -697,35 +697,35 @@ static int dwc3_ep0_std_request(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
 
        switch (ctrl->bRequest) {
        case USB_REQ_GET_STATUS:
-               dev_vdbg(dwc->dev, "USB_REQ_GET_STATUS");
+               dev_vdbg(dwc->dev, "USB_REQ_GET_STATUS\n");
                ret = dwc3_ep0_handle_status(dwc, ctrl);
                break;
        case USB_REQ_CLEAR_FEATURE:
-               dev_vdbg(dwc->dev, "USB_REQ_CLEAR_FEATURE");
+               dev_vdbg(dwc->dev, "USB_REQ_CLEAR_FEATURE\n");
                ret = dwc3_ep0_handle_feature(dwc, ctrl, 0);
                break;
        case USB_REQ_SET_FEATURE:
-               dev_vdbg(dwc->dev, "USB_REQ_SET_FEATURE");
+               dev_vdbg(dwc->dev, "USB_REQ_SET_FEATURE\n");
                ret = dwc3_ep0_handle_feature(dwc, ctrl, 1);
                break;
        case USB_REQ_SET_ADDRESS:
-               dev_vdbg(dwc->dev, "USB_REQ_SET_ADDRESS");
+               dev_vdbg(dwc->dev, "USB_REQ_SET_ADDRESS\n");
                ret = dwc3_ep0_set_address(dwc, ctrl);
                break;
        case USB_REQ_SET_CONFIGURATION:
-               dev_vdbg(dwc->dev, "USB_REQ_SET_CONFIGURATION");
+               dev_vdbg(dwc->dev, "USB_REQ_SET_CONFIGURATION\n");
                ret = dwc3_ep0_set_config(dwc, ctrl);
                break;
        case USB_REQ_SET_SEL:
-               dev_vdbg(dwc->dev, "USB_REQ_SET_SEL");
+               dev_vdbg(dwc->dev, "USB_REQ_SET_SEL\n");
                ret = dwc3_ep0_set_sel(dwc, ctrl);
                break;
        case USB_REQ_SET_ISOCH_DELAY:
-               dev_vdbg(dwc->dev, "USB_REQ_SET_ISOCH_DELAY");
+               dev_vdbg(dwc->dev, "USB_REQ_SET_ISOCH_DELAY\n");
                ret = dwc3_ep0_set_isoch_delay(dwc, ctrl);
                break;
        default:
-               dev_vdbg(dwc->dev, "Forwarding to gadget driver");
+               dev_vdbg(dwc->dev, "Forwarding to gadget driver\n");
                ret = dwc3_ep0_delegate_req(dwc, ctrl);
                break;
        }
@@ -911,17 +911,17 @@ static void dwc3_ep0_xfer_complete(struct dwc3 *dwc,
 
        switch (dwc->ep0state) {
        case EP0_SETUP_PHASE:
-               dev_vdbg(dwc->dev, "Setup Phase");
+               dev_vdbg(dwc->dev, "Setup Phase\n");
                dwc3_ep0_inspect_setup(dwc, event);
                break;
 
        case EP0_DATA_PHASE:
-               dev_vdbg(dwc->dev, "Data Phase");
+               dev_vdbg(dwc->dev, "Data Phase\n");
                dwc3_ep0_complete_data(dwc, event);
                break;
 
        case EP0_STATUS_PHASE:
-               dev_vdbg(dwc->dev, "Status Phase");
+               dev_vdbg(dwc->dev, "Status Phase\n");
                dwc3_ep0_complete_status(dwc, event);
                break;
        default:
@@ -1047,7 +1047,7 @@ static void dwc3_ep0_xfernotready(struct dwc3 *dwc,
 
        switch (event->status) {
        case DEPEVT_STATUS_CONTROL_DATA:
-               dev_vdbg(dwc->dev, "Control Data");
+               dev_vdbg(dwc->dev, "Control Data\n");
 
                /*
                 * We already have a DATA transfer in the controller's cache,
@@ -1061,7 +1061,7 @@ static void dwc3_ep0_xfernotready(struct dwc3 *dwc,
                if (dwc->ep0_expect_in != event->endpoint_number) {
                        struct dwc3_ep  *dep = dwc->eps[dwc->ep0_expect_in];
 
-                       dev_vdbg(dwc->dev, "Wrong direction for Data phase");
+                       dev_vdbg(dwc->dev, "Wrong direction for Data phase\n");
                        dwc3_ep0_end_control_data(dwc, dep);
                        dwc3_ep0_stall_and_restart(dwc);
                        return;
@@ -1073,13 +1073,13 @@ static void dwc3_ep0_xfernotready(struct dwc3 *dwc,
                if (dwc->ep0_next_event != DWC3_EP0_NRDY_STATUS)
                        return;
 
-               dev_vdbg(dwc->dev, "Control Status");
+               dev_vdbg(dwc->dev, "Control Status\n");
 
                dwc->ep0state = EP0_STATUS_PHASE;
 
                if (dwc->delayed_status) {
                        WARN_ON_ONCE(event->endpoint_number != 1);
-                       dev_vdbg(dwc->dev, "Delayed Status");
+                       dev_vdbg(dwc->dev, "Delayed Status\n");
                        return;
                }
 
@@ -1092,10 +1092,10 @@ void dwc3_ep0_interrupt(struct dwc3 *dwc,
 {
        u8                      epnum = event->endpoint_number;
 
-       dev_dbg(dwc->dev, "%s while ep%d%s in state '%s'",
-                       dwc3_ep_event_string(event->endpoint_event),
-                       epnum >> 1, (epnum & 1) ? "in" : "out",
-                       dwc3_ep0_state_string(dwc->ep0state));
+       dev_dbg(dwc->dev, "%s while ep%d%s in state '%s'\n",
+               dwc3_ep_event_string(event->endpoint_event),
+               epnum >> 1, (epnum & 1) ? "in" : "out",
+               dwc3_ep0_state_string(dwc->ep0state));
 
        switch (event->endpoint_event) {
        case DWC3_DEPEVT_XFERCOMPLETE: