Commit 5b9c58f9 authored by Nikola Pajkovsky's avatar Nikola Pajkovsky Committed by Alex Deucher

drm/amd/amdgpu: get rid of else branch

else branch is pointless if it's right at the end of function and use
unlikely() on err path.
Reviewed-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarNikola Pajkovsky <npajkovsky@suse.cz>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 503bb31b
......@@ -1734,9 +1734,11 @@ static inline void amdgpu_ring_write_multiple(struct amdgpu_ring *ring, void *sr
unsigned occupied, chunk1, chunk2;
void *dst;
if (ring->count_dw < count_dw) {
if (unlikely(ring->count_dw < count_dw)) {
DRM_ERROR("amdgpu: writing more dwords to the ring than expected!\n");
} else {
return;
}
occupied = ring->wptr & ring->buf_mask;
dst = (void *)&ring->ring[occupied];
chunk1 = ring->buf_mask + 1 - occupied;
......@@ -1757,7 +1759,6 @@ static inline void amdgpu_ring_write_multiple(struct amdgpu_ring *ring, void *sr
ring->wptr += count_dw;
ring->wptr &= ring->ptr_mask;
ring->count_dw -= count_dw;
}
}
static inline struct amdgpu_sdma_instance *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment