]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
staging: axis-fifo: Fix indentation
authorGeet Singhi <singhigeet1729@gmail.com>
Fri, 23 Jan 2026 20:59:05 +0000 (02:29 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Jan 2026 14:34:32 +0000 (15:34 +0100)
Check reported by checkpatch.pl

CHECK: Alignment should match open parenthesis

Signed-off-by: Geet Singhi <singhigeet1729@gmail.com>
Link: https://patch.msgid.link/20260123205905.37717-1-singhigeet1729@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/axis-fifo/axis-fifo.c

index 63221dfa5698dbed71834eed9f594e8f6dbe1073..aa90b27197cf9695d6d8300a5f6b1047da857638 100644 (file)
@@ -141,7 +141,7 @@ static ssize_t axis_fifo_read(struct file *f, char __user *buf,
                mutex_lock(&fifo->read_lock);
 
                ret = wait_event_interruptible(fifo->read_queue,
-                               ioread32(fifo->base_addr + XLLF_RDFO_OFFSET));
+                                              ioread32(fifo->base_addr + XLLF_RDFO_OFFSET));
                if (ret)
                        goto end_unlock;
        }