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);
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();