boot_serial: Remove unneeded carriage return at the end of frame

The correct end of SMP frame, over console, is single '\n'.

Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
diff --git a/boot/boot_serial/src/boot_serial.c b/boot/boot_serial/src/boot_serial.c
index 72e5ea6..d0fc865 100644
--- a/boot/boot_serial/src/boot_serial.c
+++ b/boot/boot_serial/src/boot_serial.c
@@ -673,7 +673,7 @@
     totlen = base64_encode(buf, totlen, encoded_buf, 1);
 #endif
     boot_uf->write(encoded_buf, totlen);
-    boot_uf->write("\n\r", 2);
+    boot_uf->write("\n", 1);
     BOOT_LOG_INF("TX");
 }