Commit d34ded7e authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Ben Skeggs

drm/nouveau/bios/timing: mark expected switch fall-throughs

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: default avatarGustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 21dce3f4
...@@ -115,16 +115,21 @@ nvbios_timingEp(struct nvkm_bios *bios, int idx, ...@@ -115,16 +115,21 @@ nvbios_timingEp(struct nvkm_bios *bios, int idx,
switch (min_t(u8, *hdr, 25)) { switch (min_t(u8, *hdr, 25)) {
case 25: case 25:
p->timing_10_24 = nvbios_rd08(bios, data + 0x18); p->timing_10_24 = nvbios_rd08(bios, data + 0x18);
/* fall through */
case 24: case 24:
case 23: case 23:
case 22: case 22:
p->timing_10_21 = nvbios_rd08(bios, data + 0x15); p->timing_10_21 = nvbios_rd08(bios, data + 0x15);
/* fall through */
case 21: case 21:
p->timing_10_20 = nvbios_rd08(bios, data + 0x14); p->timing_10_20 = nvbios_rd08(bios, data + 0x14);
/* fall through */
case 20: case 20:
p->timing_10_CWL = nvbios_rd08(bios, data + 0x13); p->timing_10_CWL = nvbios_rd08(bios, data + 0x13);
/* fall through */
case 19: case 19:
p->timing_10_18 = nvbios_rd08(bios, data + 0x12); p->timing_10_18 = nvbios_rd08(bios, data + 0x12);
/* fall through */
case 18: case 18:
case 17: case 17:
p->timing_10_16 = nvbios_rd08(bios, data + 0x10); p->timing_10_16 = nvbios_rd08(bios, data + 0x10);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment