[PATCH] greybus/uart: fix misaligned wait_for_completion_timeout

From: loren coomer

Date: Sat Mar 28 2026 - 21:36:50 EST


Align the second line of wait_for_completion_timeout() with the
opening parenthesis.

Signed-off-by: Loren Coomer <lorencoom@xxxxxxxxx>
From ef853235f3a7a6ddae1dce3b72dca18488b2db6a Mon Sep 17 00:00:00 2001
From: lorcoomer <lorencoom@xxxxxxxxx>
Date: Sat, 28 Mar 2026 18:23:30 -0700
Subject: [PATCH] greybus/uart: fix misaligned wait_for_completion_timeout

align the second line of wait_for_completion_timeout() with the opening parenthesis

Signed-off-by: Loren Coomer lorencoom@xxxxxxxxx
---
drivers/staging/greybus/uart.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/greybus/uart.c b/drivers/staging/greybus/uart.c
index 7d060b4cd33d..04f4425656d1 100644
--- a/drivers/staging/greybus/uart.c
+++ b/drivers/staging/greybus/uart.c
@@ -318,7 +318,7 @@ static int gb_uart_wait_for_all_credits(struct gb_tty *gb_tty)
return 0;

ret = wait_for_completion_timeout(&gb_tty->credits_complete,
- msecs_to_jiffies(GB_UART_CREDIT_WAIT_TIMEOUT_MSEC));
+ msecs_to_jiffies(GB_UART_CREDIT_WAIT_TIMEOUT_MSEC));
if (!ret) {
dev_err(&gb_tty->gbphy_dev->dev,
"time out waiting for credits\n");
--
2.53.0