Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1290061 > unrolled thread

[PATCH] usb: host: ehci-sched: silence checkpatch warning

Started by"Geyslan G. Bem" <geyslan@gmail.com>
First post2015-12-12 03:00 +0100
Last post2015-12-12 17:40 +0100
Articles 4 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] usb: host: ehci-sched: silence checkpatch warning "Geyslan G. Bem" <geyslan@gmail.com> - 2015-12-12 03:00 +0100
    Re: [PATCH] usb: host: ehci-sched: silence checkpatch warning "Geyslan G. Bem" <geyslan@gmail.com> - 2015-12-12 03:10 +0100
    Re: [PATCH] usb: host: ehci-sched: silence checkpatch warning Alan Stern <stern@rowland.harvard.edu> - 2015-12-12 17:20 +0100
      Re: [PATCH] usb: host: ehci-sched: silence checkpatch warning "Geyslan G. Bem" <geyslan@gmail.com> - 2015-12-12 17:40 +0100

#1290061 — [PATCH] usb: host: ehci-sched: silence checkpatch warning

From"Geyslan G. Bem" <geyslan@gmail.com>
Date2015-12-12 03:00 +0100
Subject[PATCH] usb: host: ehci-sched: silence checkpatch warning
Message-ID<qEHDA-3ZD-5@gated-at.bofh.it>
This patch moves comment into the else branch avoiding the following
misleading warning.

"braces {} are not necessary for single statement blocks"

Caught by checkpatch.

Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
Suggested-by: Joe Perches <joe@perches.com>
---
 drivers/usb/host/ehci-sched.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c
index f6e828a..b2af0b3 100644
--- a/drivers/usb/host/ehci-sched.c
+++ b/drivers/usb/host/ehci-sched.c
@@ -1560,13 +1560,10 @@ iso_stream_schedule(
 					(stream->ps.bw_period - 1);
 			stream->ps.phase_uf = start & 7;
 			reserve_release_iso_bandwidth(ehci, stream, 1);
-		}
-
-		/* New stream is already scheduled; use the upcoming slot */
-		else {
+		} else {
+			/* New stream is already scheduled; use the upcoming slot */
 			start = (stream->ps.phase << 3) + stream->ps.phase_uf;
 		}
-
 		stream->next_uframe = start;
 		new_stream = true;
 	}
-- 
2.6.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1290064

From"Geyslan G. Bem" <geyslan@gmail.com>
Date2015-12-12 03:10 +0100
Message-ID<qEHNg-4i9-5@gated-at.bofh.it>
In reply to#1290061
2015-12-11 22:50 GMT-03:00 Geyslan G. Bem <geyslan@gmail.com>:
> This patch moves comment into the else branch avoiding the following
> misleading warning.
>
> "braces {} are not necessary for single statement blocks"
>
> Caught by checkpatch.
>
> Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
> Suggested-by: Joe Perches <joe@perches.com>
> ---
>  drivers/usb/host/ehci-sched.c | 7 ++-----
>  1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c
> index f6e828a..b2af0b3 100644
> --- a/drivers/usb/host/ehci-sched.c
> +++ b/drivers/usb/host/ehci-sched.c
> @@ -1560,13 +1560,10 @@ iso_stream_schedule(
>                                         (stream->ps.bw_period - 1);
>                         stream->ps.phase_uf = start & 7;
>                         reserve_release_iso_bandwidth(ehci, stream, 1);
> -               }
> -
> -               /* New stream is already scheduled; use the upcoming slot */
> -               else {
> +               } else {
> +                       /* New stream is already scheduled; use the upcoming slot */
>                         start = (stream->ps.phase << 3) + stream->ps.phase_uf;
>                 }
> -
>                 stream->next_uframe = start;
>                 new_stream = true;
>         }
> --
> 2.6.3
>

This one must be applied only after the bunch [PATCH 00/10] usb: host:
ehci-sched: cleanup
https://lkml.org/lkml/2015/12/11/940


-- 
Regards,

Geyslan G. Bem
hackingbits.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1290221

FromAlan Stern <stern@rowland.harvard.edu>
Date2015-12-12 17:20 +0100
Message-ID<qEV3P-4oQ-13@gated-at.bofh.it>
In reply to#1290061
On Fri, 11 Dec 2015, Geyslan G. Bem wrote:

> This patch moves comment into the else branch avoiding the following
> misleading warning.
> 
> "braces {} are not necessary for single statement blocks"
> 
> Caught by checkpatch.
> 
> Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
> Suggested-by: Joe Perches <joe@perches.com>
> ---
>  drivers/usb/host/ehci-sched.c | 7 ++-----
>  1 file changed, 2 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c
> index f6e828a..b2af0b3 100644
> --- a/drivers/usb/host/ehci-sched.c
> +++ b/drivers/usb/host/ehci-sched.c
> @@ -1560,13 +1560,10 @@ iso_stream_schedule(
>  					(stream->ps.bw_period - 1);
>  			stream->ps.phase_uf = start & 7;
>  			reserve_release_iso_bandwidth(ehci, stream, 1);
> -		}
> -
> -		/* New stream is already scheduled; use the upcoming slot */
> -		else {
> +		} else {
> +			/* New stream is already scheduled; use the upcoming slot */

Please don't do this.  The comment at the start of the "if" part of 
this statement comes before the "if" line, so the commend at the start 
of the "else" part should come before the "else" line.

If you want to silence the warning about unnecessary braces, get rid of 
the braces.

>  			start = (stream->ps.phase << 3) + stream->ps.phase_uf;
>  		}
> -

Don't do this.

>  		stream->next_uframe = start;
>  		new_stream = true;
>  	}

Alan Stern

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1290227

From"Geyslan G. Bem" <geyslan@gmail.com>
Date2015-12-12 17:40 +0100
Message-ID<qEVnb-4xa-5@gated-at.bofh.it>
In reply to#1290221
Hello,

2015-12-12 13:19 GMT-03:00 Alan Stern <stern@rowland.harvard.edu>:
> On Fri, 11 Dec 2015, Geyslan G. Bem wrote:
>
>> This patch moves comment into the else branch avoiding the following
>> misleading warning.
>>
>> "braces {} are not necessary for single statement blocks"
>>
>> Caught by checkpatch.
>>
>> Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
>> Suggested-by: Joe Perches <joe@perches.com>
>> ---
>>  drivers/usb/host/ehci-sched.c | 7 ++-----
>>  1 file changed, 2 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c
>> index f6e828a..b2af0b3 100644
>> --- a/drivers/usb/host/ehci-sched.c
>> +++ b/drivers/usb/host/ehci-sched.c
>> @@ -1560,13 +1560,10 @@ iso_stream_schedule(
>>                                       (stream->ps.bw_period - 1);
>>                       stream->ps.phase_uf = start & 7;
>>                       reserve_release_iso_bandwidth(ehci, stream, 1);
>> -             }
>> -
>> -             /* New stream is already scheduled; use the upcoming slot */
>> -             else {
>> +             } else {
>> +                     /* New stream is already scheduled; use the upcoming slot */
>
> Please don't do this.  The comment at the start of the "if" part of
> this statement comes before the "if" line, so the commend at the start
> of the "else" part should come before the "else" line.

I see. It's particular comment style.
>
> If you want to silence the warning about unnecessary braces, get rid of
> the braces.
Well, this is a particular case of checkpatch due it think that the if
block has a single statement. But it's not true.

Please see:
[BUG] checkpatch warning default switch case
https://lkml.org/lkml/2015/12/11/836

So removing the braces breaks the coding style.

>
>>                       start = (stream->ps.phase << 3) + stream->ps.phase_uf;
>>               }
>> -
>
> Don't do this.
>
>>               stream->next_uframe = start;
>>               new_stream = true;
>>       }
>
> Alan Stern
>



-- 
Regards,

Geyslan G. Bem
hackingbits.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web