Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: axis-fifo: Fix indentation

Warning reported by checkpatch.pl script:

CHECK: Alignment should match open parenthesis

Signed-off-by: Uri Arev <me@wantyapps.xyz>
Reviewed-by: Bagas Sanjaya <bagasdotme@gmail.com>
Link: https://lore.kernel.org/r/20240305211416.755911-1-me@wantyapps.xyz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Uri Arev and committed by
Greg Kroah-Hartman
9643ce5e a103e5ad

+5 -5
+5 -5
drivers/staging/axis-fifo/axis-fifo.c
··· 376 376 */ 377 377 mutex_lock(&fifo->read_lock); 378 378 ret = wait_event_interruptible_timeout(fifo->read_queue, 379 - ioread32(fifo->base_addr + XLLF_RDFO_OFFSET), 380 - read_timeout); 379 + ioread32(fifo->base_addr + XLLF_RDFO_OFFSET), 380 + read_timeout); 381 381 382 382 if (ret <= 0) { 383 383 if (ret == 0) { ··· 517 517 */ 518 518 mutex_lock(&fifo->write_lock); 519 519 ret = wait_event_interruptible_timeout(fifo->write_queue, 520 - ioread32(fifo->base_addr + XLLF_TDFV_OFFSET) 521 - >= words_to_write, 522 - write_timeout); 520 + ioread32(fifo->base_addr + XLLF_TDFV_OFFSET) 521 + >= words_to_write, 522 + write_timeout); 523 523 524 524 if (ret <= 0) { 525 525 if (ret == 0) {