public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: axis-fifo: Alignment should match open parenthesis
@ 2023-10-12 12:13 Bartłomiej Konecki
  2023-10-12 12:20 ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Bartłomiej Konecki @ 2023-10-12 12:13 UTC (permalink / raw)
  To: linux-kernel; +Cc: gregkh

Fix 2 checks reported by checkpatch.pl in axis-fifo.c
for alignment should match open parenthesis

Signed-off-by: Bartłomiej Konecki <bartekkonecki97@gmail.com>
---
 drivers/staging/axis-fifo/axis-fifo.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/axis-fifo/axis-fifo.c b/drivers/staging/axis-fifo/axis-fifo.c
index 727b956aa231..ab758a527261 100644
--- a/drivers/staging/axis-fifo/axis-fifo.c
+++ b/drivers/staging/axis-fifo/axis-fifo.c
@@ -381,8 +381,8 @@ 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);
+						       ioread32(fifo->base_addr + XLLF_RDFO_OFFSET),
+						       read_timeout);
 
 		if (ret <= 0) {
 			if (ret == 0) {
@@ -522,9 +522,9 @@ 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);
+						       ioread32(fifo->base_addr + XLLF_TDFV_OFFSET)
+								>= words_to_write,
+						       write_timeout);
 
 		if (ret <= 0) {
 			if (ret == 0) {
-- 
2.39.2


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

* Re: [PATCH] staging: axis-fifo: Alignment should match open parenthesis
  2023-10-12 12:13 [PATCH] staging: axis-fifo: Alignment should match open parenthesis Bartłomiej Konecki
@ 2023-10-12 12:20 ` Greg KH
  2023-10-13  6:40   ` Bartłomiej Konecki
  0 siblings, 1 reply; 3+ messages in thread
From: Greg KH @ 2023-10-12 12:20 UTC (permalink / raw)
  To: Bartłomiej Konecki; +Cc: linux-kernel

On Thu, Oct 12, 2023 at 02:13:38PM +0200, Bartłomiej Konecki wrote:
> Fix 2 checks reported by checkpatch.pl in axis-fifo.c
> for alignment should match open parenthesis
> 
> Signed-off-by: Bartłomiej Konecki <bartekkonecki97@gmail.com>
> ---
>  drivers/staging/axis-fifo/axis-fifo.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)

Any specific reason you didn't cc: the staging mailing list like
scripts/get_maintainer.pl suggested you do?

> 
> diff --git a/drivers/staging/axis-fifo/axis-fifo.c b/drivers/staging/axis-fifo/axis-fifo.c
> index 727b956aa231..ab758a527261 100644
> --- a/drivers/staging/axis-fifo/axis-fifo.c
> +++ b/drivers/staging/axis-fifo/axis-fifo.c
> @@ -381,8 +381,8 @@ 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);
> +						       ioread32(fifo->base_addr + XLLF_RDFO_OFFSET),
> +						       read_timeout);

Does this now go over the max line length limit?  Does this patch pass
checkpatch.pl?

thanks,

greg k-h

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

* Re: [PATCH] staging: axis-fifo: Alignment should match open parenthesis
  2023-10-12 12:20 ` Greg KH
@ 2023-10-13  6:40   ` Bartłomiej Konecki
  0 siblings, 0 replies; 3+ messages in thread
From: Bartłomiej Konecki @ 2023-10-13  6:40 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-staging, linux-kernel

Dnia Thu, Oct 12, 2023 at 02:20:04PM +0200, Greg KH napisał(a):
> On Thu, Oct 12, 2023 at 02:13:38PM +0200, Bartłomiej Konecki wrote:
> > Fix 2 checks reported by checkpatch.pl in axis-fifo.c
> > for alignment should match open parenthesis
> > 
> > Signed-off-by: Bartłomiej Konecki <bartekkonecki97@gmail.com>
> > ---
> >  drivers/staging/axis-fifo/axis-fifo.c | 10 +++++-----
> >  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> Any specific reason you didn't cc: the staging mailing list like
> scripts/get_maintainer.pl suggested you do?
> 
> > 
> > diff --git a/drivers/staging/axis-fifo/axis-fifo.c b/drivers/staging/axis-fifo/axis-fifo.c
> > index 727b956aa231..ab758a527261 100644
> > --- a/drivers/staging/axis-fifo/axis-fifo.c
> > +++ b/drivers/staging/axis-fifo/axis-fifo.c
> > @@ -381,8 +381,8 @@ 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);
> > +						       ioread32(fifo->base_addr + XLLF_RDFO_OFFSET),
> > +						       read_timeout);
> 
> Does this now go over the max line length limit?  Does this patch pass
> checkpatch.pl?
> 
> thanks,
> 
> greg k-h

I have no reason to not include staging mailing list.
I fixed my mistake.

Patch lines do not have more than 54 characters, but one of line ends at column 100 and other at col 99.

After this patch there are no more 'Alignment should match open parenthesis' errors from checkpatch.pl.
checkpatch.pl gives one more error connected to documentation in this file, but it should be treated in separate commit and I am not sure how to resolve it:

WARNING: DT compatible string "xlnx,axi-fifo-mm-s-4.1" appears un-documented -- check ./Documentation/devicetree/bindings/
#916: FILE: drivers/staging/axis-fifo/axis-fifo.c:916:
+	{ .compatible = "xlnx,axi-fifo-mm-s-4.1", },

Thank you
Bart


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

end of thread, other threads:[~2023-10-13  6:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-12 12:13 [PATCH] staging: axis-fifo: Alignment should match open parenthesis Bartłomiej Konecki
2023-10-12 12:20 ` Greg KH
2023-10-13  6:40   ` Bartłomiej Konecki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox