RE: [PATCH] drm/amd/amdgpu: Fix error do not initialise globals to 0

2023-03-27 Thread SHANMUGAM, SRINIVASAN
@lists.freedesktop.org Subject: Re: [PATCH] drm/amd/amdgpu: Fix error do not initialise globals to 0 On 3/27/23 13:19, Srinivasan Shanmugam wrote: > Global variables do not need to be initialized to 0 and checkpatch > flags this error in drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c: > > E

Re: [PATCH] drm/amd/amdgpu: Fix error do not initialise globals to 0

2023-03-27 Thread Hamza Mahfooz
On 3/27/23 13:19, Srinivasan Shanmugam wrote: Global variables do not need to be initialized to 0 and checkpatch flags this error in drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c: ERROR: do not initialise globals to 0 +int amdgpu_no_queue_eviction_on_vm_fault = 0; Fix this checkpatch error. Cc: Chri

[PATCH] drm/amd/amdgpu: Fix error do not initialise globals to 0

2023-03-27 Thread Srinivasan Shanmugam
Global variables do not need to be initialized to 0 and checkpatch flags this error in drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c: ERROR: do not initialise globals to 0 +int amdgpu_no_queue_eviction_on_vm_fault = 0; Fix this checkpatch error. Cc: Christian König Cc: Alex Deucher Cc: Mario Limonci