All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: axis-fifo: align arguments to match open parenthesis
@ 2026-07-28 17:40 Ashmit Kumar
  2026-07-29  9:32 ` Dan Carpenter
  0 siblings, 1 reply; 2+ messages in thread
From: Ashmit Kumar @ 2026-07-28 17:40 UTC (permalink / raw)
  To: gregkh; +Cc: linux-staging, linux-kernel, Ashmit Kumar

Align the arguments of wait_event_interruptible() to match the opening parenthesis to conform to the Linux kernel coding style.

Signed-off-by: Ashmit Kumar <work.ashmitkumar@gmail.com>
---
 drivers/staging/axis-fifo/axis-fifo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/axis-fifo/axis-fifo.c b/drivers/staging/axis-fifo/axis-fifo.c
index 3aa2aa870ea..ed09be2fed4 100644
--- a/drivers/staging/axis-fifo/axis-fifo.c
+++ b/drivers/staging/axis-fifo/axis-fifo.c
@@ -246,7 +246,7 @@ static ssize_t axis_fifo_write(struct file *f, const char __user *buf,
 		mutex_lock(&fifo->write_lock);
 
 		ret = wait_event_interruptible(fifo->write_queue,
-			ioread32(fifo->base_addr + XLLF_TDFV_OFFSET) >= words_to_write);
+					       ioread32(fifo->base_addr + XLLF_TDFV_OFFSET) >= words_to_write);
 		if (ret)
 			goto end_unlock;
 	}
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] staging: axis-fifo: align arguments to match open parenthesis
  2026-07-28 17:40 [PATCH] staging: axis-fifo: align arguments to match open parenthesis Ashmit Kumar
@ 2026-07-29  9:32 ` Dan Carpenter
  0 siblings, 0 replies; 2+ messages in thread
From: Dan Carpenter @ 2026-07-29  9:32 UTC (permalink / raw)
  To: Ashmit Kumar; +Cc: gregkh, linux-staging, linux-kernel

On Tue, Jul 28, 2026 at 05:40:18PM +0000, Ashmit Kumar wrote:
> Align the arguments of wait_event_interruptible() to match the opening parenthesis to conform to the Linux kernel coding style.
> 
> Signed-off-by: Ashmit Kumar <work.ashmitkumar@gmail.com>
> ---
>  drivers/staging/axis-fifo/axis-fifo.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/axis-fifo/axis-fifo.c b/drivers/staging/axis-fifo/axis-fifo.c
> index 3aa2aa870ea..ed09be2fed4 100644
> --- a/drivers/staging/axis-fifo/axis-fifo.c
> +++ b/drivers/staging/axis-fifo/axis-fifo.c
> @@ -246,7 +246,7 @@ static ssize_t axis_fifo_write(struct file *f, const char __user *buf,
>  		mutex_lock(&fifo->write_lock);
>  
>  		ret = wait_event_interruptible(fifo->write_queue,
> -			ioread32(fifo->base_addr + XLLF_TDFV_OFFSET) >= words_to_write);
> +					       ioread32(fifo->base_addr + XLLF_TDFV_OFFSET) >= words_to_write);

Search for this function name on lore.  The original format is okay.

regards,
dan carpenter


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-07-29  9:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-28 17:40 [PATCH] staging: axis-fifo: align arguments to match open parenthesis Ashmit Kumar
2026-07-29  9:32 ` Dan Carpenter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.