On Tue, Jan 10, 2017 at 4:38 AM, Yu, Xiangliang <[email protected]> wrote:
>>  Use BUG_ON instead of a if condition followed by BUG.
>>
>> Generated by: scripts/coccinelle/misc/bugon.cocci
>>
>> CC: Xiangliang Yu <[email protected]>
>> Signed-off-by: Julia Lawall <[email protected]>
>> Signed-off-by: Fengguang Wu <[email protected]>

Applied.  thanks!

Alex

>> ---
>>
>>  gfx_v8_0.c |    3 +--
>>  1 file changed, 1 insertion(+), 2 deletions(-)
>>
>> --- a/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
>> @@ -6623,8 +6623,7 @@ static void gfx_v8_0_ring_emit_fence_kiq
>>                                        u64 seq, unsigned int flags)
>>  {
>>       /* we only allocate 32bit for each seq wb address */
>> -     if (flags & AMDGPU_FENCE_FLAG_64BIT)
>> -             BUG();
>> +     BUG_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
>>
>>       /* write fence seq to the "addr" */
>>       amdgpu_ring_write(ring, PACKET3(PACKET3_WRITE_DATA, 3));
>
> Reviewd-by: Xiangliang.Yu <[email protected]>
>
> _______________________________________________
> dri-devel mailing list
> [email protected]
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
_______________________________________________
dri-devel mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to