diff options
author | 2018-09-20 10:58:17 -0400 | |
---|---|---|
committer | 2018-12-11 12:51:29 -0500 | |
commit | 0841851f3b22bc1da09683aa458efe9f9e2abf51 (patch) | |
tree | 8a2b0fa8c53b157e0aa65f267f12e2a3f420754c /drivers/gpu/drm/msm/msm_ringbuffer.h | |
parent | drm/msm: dpu: Remove 'inline' from several functions (diff) | |
download | linux-dev-0841851f3b22bc1da09683aa458efe9f9e2abf51.tar.xz linux-dev-0841851f3b22bc1da09683aa458efe9f9e2abf51.zip |
drm/msm: dpu: Remove empty/useless labels
I noticed an empty label while driving by and decided to use
coccinelle to see if there were any more. Here's the spatch and the
invocation:
---
@@
identifier lbl;
expression E;
@@
- goto lbl;
+ return E;
...
- lbl:
return E;
@@
identifier lbl;
@@
- goto lbl;
+ return;
...
- lbl:
- return;
---
spatch --allow-inconsistent-paths --sp-file file.spatch --dir
drivers/gpu/drm/msm/disp/dpu1 --in-place
---
Reviewed-by: Jeykumar Sankaran <jsanka@codeaurora.org>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/msm/msm_ringbuffer.h')
0 files changed, 0 insertions, 0 deletions