diff options
| author | Gustavo A. R. Silva <[email protected]> | 2021-07-13 02:24:07 +0000 |
|---|---|---|
| committer | Gustavo A. R. Silva <[email protected]> | 2021-07-13 02:32:25 +0000 |
| commit | e181ad43887c6b6b5995e9b191666f04242d77eb (patch) | |
| tree | 5eb3c08aa19602ae20b2557b2587c36225ca462c /drivers/gpu/drm/msm/msm_gem.c | |
| parent | mtd: cfi_util: Fix unreachable code issue (diff) | |
| download | kernel-e181ad43887c6b6b5995e9b191666f04242d77eb.tar.gz kernel-e181ad43887c6b6b5995e9b191666f04242d77eb.zip | |
drm/msm: Fix fall-through warning in msm_gem_new_impl()
Fix the following fall-through warning:
drivers/gpu/drm/msm/msm_gem.c: In function 'msm_gem_new_impl':
drivers/gpu/drm/msm/msm_gem.c:1170:6: warning: this statement may fall through [-Wimplicit-fallthrough=]
1170 | if (priv->has_cached_coherent)
| ^
drivers/gpu/drm/msm/msm_gem.c:1173:2: note: here
1173 | default:
| ^~~~~~~
by replacing the /* fallthrough */ comment with fallthrough;
Reported-by: Stephen Rothwell <[email protected]>
Signed-off-by: Gustavo A. R. Silva <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/msm/msm_gem.c')
| -rw-r--r-- | drivers/gpu/drm/msm/msm_gem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/msm/msm_gem.c b/drivers/gpu/drm/msm/msm_gem.c index 141178754231..1e8a971a86f2 100644 --- a/drivers/gpu/drm/msm/msm_gem.c +++ b/drivers/gpu/drm/msm/msm_gem.c @@ -1169,7 +1169,7 @@ static int msm_gem_new_impl(struct drm_device *dev, case MSM_BO_CACHED_COHERENT: if (priv->has_cached_coherent) break; - /* fallthrough */ + fallthrough; default: DRM_DEV_ERROR(dev->dev, "invalid cache flag: %x\n", (flags & MSM_BO_CACHE_MASK)); |
