[PATCH v3] staging: axis-fifo: align arguments to match open parenthesis
Ashmit Kumar <[email protected]>
| Newsgroups | gmane.linux.kernel |
|---|---|
| Message-ID | <[email protected]> |
Fixes a checkpatch warning for alignment matching open parenthesis. Signed-off-by: Ashmit Kumar <[email protected]> --- Changes in v3: - Fixed DOS line endings. - Shortened the Subject line to comply with checkpatch. 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.51.0.windows.1