Re: mtd: cfi_cmdset_0020: Mark expected switch fall-throughs

2018-11-09 Thread Gustavo A. R. Silva
On 11/9/18 1:40 PM, Boris Brezillon wrote: Applied to http://git.infradead.org/linux-mtd.git mtd/next, thanks. Thanks, Boris. -- Gustavo

Re: mtd: cfi_cmdset_0020: Mark expected switch fall-throughs

2018-11-09 Thread Boris Brezillon
On Wed, 2018-08-15 at 17:02:26 UTC, "Gustavo A. R. Silva" wrote: > In preparation to enabling -Wimplicit-fallthrough, mark switch cases > where we are expecting to fall through. > > Addresses-Coverity-ID: 114857 ("Missing break in switch") > Addresses-Coverity-ID: 114858 ("Missing break in switch"

[PATCH] mtd: cfi_cmdset_0020: Mark expected switch fall-throughs

2018-08-15 Thread Gustavo A. R. Silva
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Addresses-Coverity-ID: 114857 ("Missing break in switch") Addresses-Coverity-ID: 114858 ("Missing break in switch") Addresses-Coverity-ID: 114859 ("Missing break in switch") Addresses-Cover