OSDN Git Service

drm/amd/powerplay: remove unnecessary call to memset
authorHimanshu Jha <himanshujha199640@gmail.com>
Mon, 11 Sep 2017 12:37:26 +0000 (18:07 +0530)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 12 Sep 2017 18:32:55 +0000 (14:32 -0400)
commit4a00f21db800bc64264bb6764c3d0d0878e9f4c4
treed6600169624dfdcd057cfd107323e4352305aea7
parent29c3035fe385b4214fc0515b9cd0ff53d23b4e82
drm/amd/powerplay: remove unnecessary call to memset

call to memset to assign 0 value immediately after allocating
memory with kzalloc is unnecesaary as kzalloc allocates the memory
filled with 0 value.

Semantic patch used to resolve this issue:

@@
expression e,e2; constant c;
statement S;
@@

  e = kzalloc(e2, c);
  if(e == NULL) S
- memset(e, 0, e2);

Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/powerplay/hwmgr/process_pptables_v1_0.c