diff options
| author | Mario Limonciello <[email protected]> | 2023-01-15 19:01:56 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2023-01-17 21:11:51 +0000 |
| commit | bda88a26f578520e081d532b5773a1a9c2c421eb (patch) | |
| tree | f1ff8ee6ed275fe3ca43a694f3653dc2c24d01b4 /drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c | |
| parent | drm/amdgpu: fix cleaning up reserved VMID on release (diff) | |
| download | kernel-bda88a26f578520e081d532b5773a1a9c2c421eb.tar.gz kernel-bda88a26f578520e081d532b5773a1a9c2c421eb.zip | |
drm/amd: Remove needless break for legacy IP discovery MP0 9.0.0
There is already a "default" case in the switch block, so there is
no need to have a break after the switch block.
Reviewed-by: Aaron Liu <[email protected]>
Signed-off-by: Mario Limonciello <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c index c03824d0311b..380b89114341 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c @@ -1072,7 +1072,6 @@ static const char *amdgpu_ucode_legacy_naming(struct amdgpu_device *adev, int bl default: return NULL; } - break; case IP_VERSION(10, 0, 0): case IP_VERSION(10, 0, 1): if (adev->asic_type == CHIP_RAVEN) { |
