From: Alex Deucher Date: Thu, 22 Aug 2019 03:25:27 +0000 (-0500) Subject: drm/amdgpu/powerplay: silence a warning in smu_v11_0_setup_pptable X-Git-Tag: v5.15~5667^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75710f08ea7e41b2f7010da3f6deab061f7a853b;p=platform%2Fkernel%2Flinux-starfive.git drm/amdgpu/powerplay: silence a warning in smu_v11_0_setup_pptable I think gcc is confused as I don't see how size could be used unitialized, but go ahead and silence the warning. Signed-off-by: Alex Deucher Reviewed-by: Evan Quan Signed-off-by: Dave Airlie Link: https://patchwork.freedesktop.org/patch/msgid/20190822032527.1376-1-alexander.deucher@amd.com --- diff --git a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c index 3ac061a..5309796 100644 --- a/drivers/gpu/drm/amd/powerplay/smu_v11_0.c +++ b/drivers/gpu/drm/amd/powerplay/smu_v11_0.c @@ -326,7 +326,7 @@ static int smu_v11_0_setup_pptable(struct smu_context *smu) struct amdgpu_device *adev = smu->adev; const struct smc_firmware_header_v1_0 *hdr; int ret, index; - uint32_t size; + uint32_t size = 0; uint16_t atom_table_size; uint8_t frev, crev; void *table;