linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: "Gustavo A. R. Silva" <garsilva@embeddedor.com>
Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Input: sidewinder - mark expected switch fall-throughs
Date: Fri, 10 Nov 2017 10:24:27 -0800	[thread overview]
Message-ID: <20171110182427.45cji4wltdb2toh6@dtor-ws> (raw)
In-Reply-To: <20171109030250.GA13692@embeddedor.com>

On Wed, Nov 08, 2017 at 09:02:50PM -0600, Gustavo A. R. Silva wrote:
> In preparation to enabling -Wimplicit-fallthrough, mark switch cases
> where we are expecting to fall through.
> 
> Addresses-Coverity-ID: 114763
> Addresses-Coverity-ID: 114764
> Addresses-Coverity-ID: 114765
> Addresses-Coverity-ID: 114766
> Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>

Applied, thank you.

> ---
>  drivers/input/joystick/sidewinder.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/input/joystick/sidewinder.c b/drivers/input/joystick/sidewinder.c
> index 4a95b22..5e602a6 100644
> --- a/drivers/input/joystick/sidewinder.c
> +++ b/drivers/input/joystick/sidewinder.c
> @@ -672,16 +672,16 @@ static int sw_connect(struct gameport *gameport, struct gameport_driver *drv)
>  
>  			switch (i * m) {
>  				case 60:
> -					sw->number++;
> +					sw->number++;			/* fall through */
>  				case 45:				/* Ambiguous packet length */
>  					if (j <= 40) {			/* ID length less or eq 40 -> FSP */
>  				case 43:
>  						sw->type = SW_ID_FSP;
>  						break;
>  					}
> -					sw->number++;
> +					sw->number++;			/* fall through */
>  				case 30:
> -					sw->number++;
> +					sw->number++;			/* fall through */
>  				case 15:
>  					sw->type = SW_ID_GP;
>  					break;
> @@ -697,9 +697,9 @@ static int sw_connect(struct gameport *gameport, struct gameport_driver *drv)
>  						sw->type = SW_ID_PP;
>  					break;
>  				case 66:
> -					sw->bits = 3;
> +					sw->bits = 3;			/* fall through */
>  				case 198:
> -					sw->length = 22;
> +					sw->length = 22;		/* fall through */
>  				case 64:
>  					sw->type = SW_ID_3DP;
>  					if (j == 160)
> -- 
> 2.7.4
> 

-- 
Dmitry

      reply	other threads:[~2017-11-10 18:24 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-09  3:02 [PATCH] Input: sidewinder - mark expected switch fall-throughs Gustavo A. R. Silva
2017-11-10 18:24 ` Dmitry Torokhov [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171110182427.45cji4wltdb2toh6@dtor-ws \
    --to=dmitry.torokhov@gmail.com \
    --cc=garsilva@embeddedor.com \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).