Re: [PATCH] scsi: aic94xx: mark expected switch fall-throughs

2018-10-16 Thread Gustavo A. R. Silva
On 10/17/18 3:55 AM, Martin K. Petersen wrote: >> In preparation to enabling -Wimplicit-fallthrough, mark switch cases >> where we are expecting to fall through. > > Applied to 4.20/scsi-queue. > Thank you, Martin. -- Gustavo

Re: [PATCH] scsi: aic94xx: mark expected switch fall-throughs

2018-10-16 Thread Martin K. Petersen
Gustavo, > In preparation to enabling -Wimplicit-fallthrough, mark switch cases > where we are expecting to fall through. Applied to 4.20/scsi-queue. -- Martin K. Petersen Oracle Linux Engineering

[PATCH] scsi: aic94xx: mark expected switch fall-throughs

2018-10-04 Thread Gustavo A. R. Silva
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Addresses-Coverity-ID: 114988 ("Missing break in switch") Addresses-Coverity-ID: 114989 ("Missing break in switch") Addresses-Coverity-ID: 114990 ("Missing break in switch") Addresses-Cover