1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-18 00:52:07 +02:00

usb: gadget: sdp: add missing line breaks

Cosmetic change.

Signed-off-by: Andre Heider <a.heider@gmail.com>
Reviewed-by: Lukasz Majewski <lukma@denx.de>
Acked-by: Stefan Agner <stefan.agner@toradex.com>
This commit is contained in:
Andre Heider
2018-02-15 07:08:55 +01:00
committed by Marek Vasut
parent f0f6917188
commit 24ccd0c8fd
3 changed files with 11 additions and 11 deletions

View File

@@ -28,13 +28,13 @@ static int do_sdp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
ret = sdp_init(controller_index); ret = sdp_init(controller_index);
if (ret) { if (ret) {
pr_err("SDP init failed: %d", ret); pr_err("SDP init failed: %d\n", ret);
goto exit; goto exit;
} }
/* This command typically does not return but jumps to an image */ /* This command typically does not return but jumps to an image */
sdp_handle(controller_index); sdp_handle(controller_index);
pr_err("SDP ended"); pr_err("SDP ended\n");
exit: exit:
g_dnl_unregister(); g_dnl_unregister();

View File

@@ -24,13 +24,13 @@ static int spl_sdp_load_image(struct spl_image_info *spl_image,
ret = sdp_init(controller_index); ret = sdp_init(controller_index);
if (ret) { if (ret) {
pr_err("SDP init failed: %d", ret); pr_err("SDP init failed: %d\n", ret);
return -ENODEV; return -ENODEV;
} }
/* This command typically does not return but jumps to an image */ /* This command typically does not return but jumps to an image */
sdp_handle(controller_index); sdp_handle(controller_index);
pr_err("SDP ended"); pr_err("SDP ended\n");
return -EINVAL; return -EINVAL;
} }

View File

@@ -238,12 +238,12 @@ static void sdp_rx_command_complete(struct usb_ep *ep, struct usb_request *req)
u8 report = data[0]; u8 report = data[0];
if (status != 0) { if (status != 0) {
pr_err("Status: %d", status); pr_err("Status: %d\n", status);
return; return;
} }
if (report != 1) { if (report != 1) {
pr_err("Unexpected report %d", report); pr_err("Unexpected report %d\n", report);
return; return;
} }
@@ -323,12 +323,12 @@ static void sdp_rx_data_complete(struct usb_ep *ep, struct usb_request *req)
int datalen = req->length - 1; int datalen = req->length - 1;
if (status != 0) { if (status != 0) {
pr_err("Status: %d", status); pr_err("Status: %d\n", status);
return; return;
} }
if (report != 2) { if (report != 2) {
pr_err("Unexpected report %d", report); pr_err("Unexpected report %d\n", report);
return; return;
} }
@@ -361,7 +361,7 @@ static void sdp_rx_data_complete(struct usb_ep *ep, struct usb_request *req)
sdp->state = SDP_STATE_TX_SEC_CONF; sdp->state = SDP_STATE_TX_SEC_CONF;
break; break;
default: default:
pr_err("Invalid state: %d", sdp->state); pr_err("Invalid state: %d\n", sdp->state);
} }
} }
@@ -371,7 +371,7 @@ static void sdp_tx_complete(struct usb_ep *ep, struct usb_request *req)
int status = req->status; int status = req->status;
if (status != 0) { if (status != 0) {
pr_err("Status: %d", status); pr_err("Status: %d\n", status);
return; return;
} }
@@ -394,7 +394,7 @@ static void sdp_tx_complete(struct usb_ep *ep, struct usb_request *req)
sdp->state = SDP_STATE_IDLE; sdp->state = SDP_STATE_IDLE;
break; break;
default: default:
pr_err("Wrong State: %d", sdp->state); pr_err("Wrong State: %d\n", sdp->state);
sdp->state = SDP_STATE_IDLE; sdp->state = SDP_STATE_IDLE;
break; break;
} }