summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorAndre Heider <a.heider@gmail.com>2018-02-15 07:08:55 +0100
committerMarek Vasut <marex@denx.de>2018-02-21 20:28:15 +0100
commit24ccd0c8fd6285636edb94d0ece2cbcf062d64eb (patch)
tree842f1820964ae6e33e471f76de4c3c9a0ac99d06 /cmd
parentf0f6917188ad660cf002c10095f46ecf748b8f58 (diff)
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>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/usb_gadget_sdp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/usb_gadget_sdp.c b/cmd/usb_gadget_sdp.c
index ae4d73c125..97d00ec545 100644
--- a/cmd/usb_gadget_sdp.c
+++ b/cmd/usb_gadget_sdp.c
@@ -28,13 +28,13 @@ static int do_sdp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
ret = sdp_init(controller_index);
if (ret) {
- pr_err("SDP init failed: %d", ret);
+ pr_err("SDP init failed: %d\n", ret);
goto exit;
}
/* This command typically does not return but jumps to an image */
sdp_handle(controller_index);
- pr_err("SDP ended");
+ pr_err("SDP ended\n");
exit:
g_dnl_unregister();