From 72000df579c7434b0e37b81a131328b0bafd0c86 Mon Sep 17 00:00:00 2001 From: Geet Singhi Date: Sat, 24 Jan 2026 02:29:05 +0530 Subject: [PATCH] staging: axis-fifo: Fix indentation Check reported by checkpatch.pl CHECK: Alignment should match open parenthesis Signed-off-by: Geet Singhi Link: https://patch.msgid.link/20260123205905.37717-1-singhigeet1729@gmail.com Signed-off-by: Greg Kroah-Hartman --- 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 63221dfa5698..aa90b27197cf 100644 --- a/drivers/staging/axis-fifo/axis-fifo.c +++ b/drivers/staging/axis-fifo/axis-fifo.c @@ -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; } -- 2.47.3