diff options
| author | Hari Mishal <harimishal1@gmail.com> | 2026-07-07 20:20:38 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2026-07-08 07:01:27 +0200 |
| commit | 0c503edfcc031cd74f7f1b38620f10ce2865164c (patch) | |
| tree | f25041eea55405284f8686e94e2fa101fbf12f63 | |
| parent | 00123e1857b112a61ea742b4255a56586d0f8216 (diff) | |
| download | linux-0c503edfcc031cd74f7f1b38620f10ce2865164c.tar.gz linux-0c503edfcc031cd74f7f1b38620f10ce2865164c.zip | |
staging: axis-fifo: Align arguments to open parenthesis
Align the second argument of wait_event_interruptible() with the
open parenthesis to fix a checkpatch warning.
Signed-off-by: Hari Mishal <harimishal1@gmail.com>
Link: https://patch.msgid.link/20260707182038.37405-1-harimishal1@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/axis-fifo/axis-fifo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/axis-fifo/axis-fifo.c b/drivers/staging/axis-fifo/axis-fifo.c index 3aa2aa870ea9..1c34de020cf8 100644 --- a/drivers/staging/axis-fifo/axis-fifo.c +++ b/drivers/staging/axis-fifo/axis-fifo.c @@ -246,7 +246,8 @@ 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; } |
