]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
drm/amd/powerplay: Delete a redundant memory setting in vega20_set_default_od8_settti...
authorMarkus Elfring <elfring@users.sourceforge.net>
Mon, 17 Jun 2019 12:24:14 +0000 (14:24 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 17 Jun 2019 16:02:03 +0000 (11:02 -0500)
The memory was set to zero already by a call of the function “kzalloc”.
Thus remove an extra call of the function “memset” for this purpose.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/powerplay/vega20_ppt.c

index 4aa8f5a69c4c763343efbd9b83824189c0503b9e..62497ad66a39f3be161fa2c7c53a8c536ff687bb 100644 (file)
@@ -1295,7 +1295,6 @@ static int vega20_set_default_od8_setttings(struct smu_context *smu)
        if (!table_context->od8_settings)
                return -ENOMEM;
 
-       memset(table_context->od8_settings, 0, sizeof(struct vega20_od8_settings));
        od8_settings = (struct vega20_od8_settings *)table_context->od8_settings;
 
        if (smu_feature_is_enabled(smu, FEATURE_DPM_SOCCLK_BIT)) {