Re: [PATCH] drm/amdgpu: Uninitialized variable in amdgpu_ttm_backend_bind()

2017-08-10 Thread Christian König
Am 10.08.2017 um 07:34 schrieb Alex Deucher: On Wed, Aug 9, 2017 at 10:16 PM, Michel Dänzer wrote: On 09/08/17 07:30 PM, Dan Carpenter wrote: My static checker complains that it's possible for "r" to be uninitialized. It used to be set to zero so this returns it to the

Re: [PATCH] drm/amdgpu: Uninitialized variable in amdgpu_ttm_backend_bind()

2017-08-09 Thread Alex Deucher
On Wed, Aug 9, 2017 at 10:16 PM, Michel Dänzer wrote: > On 09/08/17 07:30 PM, Dan Carpenter wrote: >> My static checker complains that it's possible for "r" to be >> uninitialized. It used to be set to zero so this returns it to the old >> behavior. >> >> Fixes: 98a7f88ce9a9

Re: [PATCH] drm/amdgpu: Uninitialized variable in amdgpu_ttm_backend_bind()

2017-08-09 Thread Michel Dänzer
On 09/08/17 07:30 PM, Dan Carpenter wrote: > My static checker complains that it's possible for "r" to be > uninitialized. It used to be set to zero so this returns it to the old > behavior. > > Fixes: 98a7f88ce9a9 ("drm/amdgpu: bind BOs with GTT space allocated directly > v2") > Signed-off-by:

[PATCH] drm/amdgpu: Uninitialized variable in amdgpu_ttm_backend_bind()

2017-08-09 Thread Dan Carpenter
My static checker complains that it's possible for "r" to be uninitialized. It used to be set to zero so this returns it to the old behavior. Fixes: 98a7f88ce9a9 ("drm/amdgpu: bind BOs with GTT space allocated directly v2") Signed-off-by: Dan Carpenter diff --git