From 1709731c5c4b5ff3d45cb51c448dc2cee293a292 Mon Sep 17 00:00:00 2001 From: Yishai Jaffe Date: Wed, 22 Jan 2025 10:37:04 +0200 Subject: [PATCH] shell: uart: fixed indentation Fixed indentation to match line above. Signed-off-by: Yishai Jaffe --- drivers/serial/uart_shell.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/serial/uart_shell.c b/drivers/serial/uart_shell.c index 2e29ab954cd..3bdb6e516e6 100644 --- a/drivers/serial/uart_shell.c +++ b/drivers/serial/uart_shell.c @@ -103,13 +103,13 @@ SHELL_DYNAMIC_CMD_CREATE(dsub_device_name, device_name_get); SHELL_STATIC_SUBCMD_SET_CREATE(sub_uart_cmds, SHELL_CMD_ARG(baudrate, &dsub_device_name, - "Configure UART device baudrate\n" - "Usage: baudrate ", - cmd_uart_baudrate, 3, 0), + "Configure UART device baudrate\n" + "Usage: baudrate ", + cmd_uart_baudrate, 3, 0), SHELL_CMD_ARG(fc, &dsub_device_name, - "Configure UART device flow control\n" - "Usage: fc ", - cmd_uart_flow_control, 3, 0), + "Configure UART device flow control\n" + "Usage: fc ", + cmd_uart_flow_control, 3, 0), SHELL_SUBCMD_SET_END /* Array terminated. */ );