diff options
author | Gustavo A. R. Silva <gustavoars@kernel.org> | 2020-11-20 19:35:38 +0100 |
---|---|---|
committer | Gustavo A. R. Silva <gustavoars@kernel.org> | 2021-06-04 06:24:07 +0200 |
commit | e0e6f9b2a329c2672391fab435240c221d04641c (patch) | |
tree | 6e596dece22704a99578e5f93f2a86478dc43eb3 /drivers | |
parent | drm/nouveau: Fix fall-through warnings for Clang (diff) | |
download | linux-e0e6f9b2a329c2672391fab435240c221d04641c.tar.xz linux-e0e6f9b2a329c2672391fab435240c221d04641c.zip |
drm/nouveau/therm: Fix fall-through warnings for Clang
In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning
by explicitly adding a break statement instead of letting the code fall
through to the next case.
Link: https://github.com/KSPP/linux/issues/115
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/nouveau/nvkm/subdev/therm/gf119.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/therm/gf119.c b/drivers/gpu/drm/nouveau/nvkm/subdev/therm/gf119.c index 2b031d4eaeb6..684aff7437ee 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/therm/gf119.c +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/therm/gf119.c @@ -41,6 +41,7 @@ pwm_info(struct nvkm_therm *therm, int line) default: break; } + break; default: break; } |