All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] staging: axis-fifo: Fixed parenthesis styling issues
@ 2022-03-20  4:23 Ryan C. England
  2022-03-20  6:44 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Ryan C. England @ 2022-03-20  4:23 UTC (permalink / raw)
  To: gregkh; +Cc: lee.jones, linux-staging, linux-kernel, Ryan C. England

Fixed open parenthesis alignment issues.

Signed-off-by: Ryan C. England <rcengland@gmail.com>
---
 drivers/staging/axis-fifo/axis-fifo.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/axis-fifo/axis-fifo.c b/drivers/staging/axis-fifo/axis-fifo.c
index dfd2b357f484..4720d6f877bc 100644
--- a/drivers/staging/axis-fifo/axis-fifo.c
+++ b/drivers/staging/axis-fifo/axis-fifo.c
@@ -383,10 +383,10 @@ static ssize_t axis_fifo_read(struct file *f, char __user *buf,
 		 */
 		mutex_lock(&fifo->read_lock);
 		ret = wait_event_interruptible_timeout(fifo->read_queue,
-			ioread32(fifo->base_addr + XLLF_RDFO_OFFSET),
-				 (read_timeout >= 0) ?
-				  msecs_to_jiffies(read_timeout) :
-				  MAX_SCHEDULE_TIMEOUT);
+						       ioread32(fifo->base_addr + XLLF_RDFO_OFFSET),
+						       (read_timeout >= 0) ?
+						       msecs_to_jiffies(read_timeout) :
+						       MAX_SCHEDULE_TIMEOUT);
 
 		if (ret <= 0) {
 			if (ret == 0) {
@@ -526,11 +526,11 @@ static ssize_t axis_fifo_write(struct file *f, const char __user *buf,
 		 */
 		mutex_lock(&fifo->write_lock);
 		ret = wait_event_interruptible_timeout(fifo->write_queue,
-			ioread32(fifo->base_addr + XLLF_TDFV_OFFSET)
-				 >= words_to_write,
-				 (write_timeout >= 0) ?
-				  msecs_to_jiffies(write_timeout) :
-				  MAX_SCHEDULE_TIMEOUT);
+						       ioread32(fifo->base_addr + XLLF_TDFV_OFFSET)
+						       >= words_to_write,
+						       (write_timeout >= 0) ?
+						       msecs_to_jiffies(write_timeout) :
+						       MAX_SCHEDULE_TIMEOUT);
 
 		if (ret <= 0) {
 			if (ret == 0) {
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 2/2] staging: axis-fifo: Fixed parenthesis styling issues
  2022-03-20  4:23 [PATCH 2/2] staging: axis-fifo: Fixed parenthesis styling issues Ryan C. England
@ 2022-03-20  6:44 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2022-03-20  6:44 UTC (permalink / raw)
  To: Ryan C. England; +Cc: gregkh, lee.jones, linux-staging, linux-kernel

On Sun, Mar 20, 2022 at 04:23:40AM +0000, Ryan C. England wrote:
> Fixed open parenthesis alignment issues.
> 
> Signed-off-by: Ryan C. England <rcengland@gmail.com>
> ---
>  drivers/staging/axis-fifo/axis-fifo.c | 18 +++++++++---------
>  1 file changed, 9 insertions(+), 9 deletions(-)

Where is patch 1/2 in this series?

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-03-20  6:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-20  4:23 [PATCH 2/2] staging: axis-fifo: Fixed parenthesis styling issues Ryan C. England
2022-03-20  6:44 ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.