From 4a5e53ef987b47a0dccab895d679cc48a81894d1 Mon Sep 17 00:00:00 2001 From: Liam Beguin Date: Mon, 20 May 2024 19:08:27 -0400 Subject: [PATCH] spi: shell: add missing newline character Add missing newline in help string. Signed-off-by: Liam Beguin --- drivers/spi/spi_shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/spi_shell.c b/drivers/spi/spi_shell.c index a7e01d3e270a3..0c2c11af3f7fa 100644 --- a/drivers/spi/spi_shell.c +++ b/drivers/spi/spi_shell.c @@ -139,7 +139,7 @@ SHELL_STATIC_SUBCMD_SET_CREATE(sub_spi_cmds, SHELL_CMD_ARG(conf, &dsub_device_name, "Configure SPI\n" "Usage: spi conf []\n" - " - any sequence of letters:" + " - any sequence of letters:\n" "o - SPI_MODE_CPOL\n" "h - SPI_MODE_CPHA\n" "l - SPI_TRANSFER_LSB\n"