diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2019-07-21 16:41:37 -0500 |
---|---|---|
committer | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2019-07-25 20:12:38 -0500 |
commit | 737298d18836fd14b8820de6504536c998986bcd (patch) | |
tree | aa825214aa0ab4b2c43fc2ac6dfcba174305d59f | |
parent | 7b26b91d3b2320a64af63b6ec989ee3bed59f0d3 (diff) | |
download | linux-737298d18836fd14b8820de6504536c998986bcd.tar.gz linux-737298d18836fd14b8820de6504536c998986bcd.tar.bz2 linux-737298d18836fd14b8820de6504536c998986bcd.zip |
drm/amdkfd: Fix missing break in switch statement
Add missing break statement in order to prevent the code from falling
through to case CHIP_NAVI10.
This bug was found thanks to the ongoing efforts to enable
-Wimplicit-fallthrough.
Fixes: 14328aa58ce5 ("drm/amdkfd: Add navi10 support to amdkfd. (v3)")
Cc: stable@vger.kernel.org
Reviewed-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdkfd/kfd_crat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_crat.c b/drivers/gpu/drm/amd/amdkfd/kfd_crat.c index 792371442195..4e3fc284f6ac 100644 --- a/drivers/gpu/drm/amd/amdkfd/kfd_crat.c +++ b/drivers/gpu/drm/amd/amdkfd/kfd_crat.c @@ -668,6 +668,7 @@ static int kfd_fill_gpu_cache_info(struct kfd_dev *kdev, case CHIP_RAVEN: pcache_info = raven_cache_info; num_of_cache_types = ARRAY_SIZE(raven_cache_info); + break; case CHIP_NAVI10: pcache_info = navi10_cache_info; num_of_cache_types = ARRAY_SIZE(navi10_cache_info); |