]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drm/nouveau/bios/timing: mark expected switch fall-throughs
authorGustavo A. R. Silva <garsilva@embeddedor.com>
Thu, 2 Nov 2017 20:20:33 +0000 (15:20 -0500)
committerBen Skeggs <bskeggs@redhat.com>
Thu, 2 Nov 2017 23:12:10 +0000 (09:12 +1000)
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.

Addresses-Coverity-ID: 1260018
Addresses-Coverity-ID: 1260019
Addresses-Coverity-ID: 1260022
Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nvkm/subdev/bios/timing.c

index 7e83c3985020e1edef5eed296bc66abbb3256922..20ff5173cf8fdd94bf63839be220f361c46a73be 100644 (file)
@@ -115,16 +115,21 @@ nvbios_timingEp(struct nvkm_bios *bios, int idx,
                switch (min_t(u8, *hdr, 25)) {
                case 25:
                        p->timing_10_24  = nvbios_rd08(bios, data + 0x18);
+                       /* fall through */
                case 24:
                case 23:
                case 22:
                        p->timing_10_21  = nvbios_rd08(bios, data + 0x15);
+                       /* fall through */
                case 21:
                        p->timing_10_20  = nvbios_rd08(bios, data + 0x14);
+                       /* fall through */
                case 20:
                        p->timing_10_CWL = nvbios_rd08(bios, data + 0x13);
+                       /* fall through */
                case 19:
                        p->timing_10_18  = nvbios_rd08(bios, data + 0x12);
+                       /* fall through */
                case 18:
                case 17:
                        p->timing_10_16  = nvbios_rd08(bios, data + 0x10);