Re: [PATCH 02/10] drm/amdgpu: Remove tmp unused variable

2022-02-22 Thread Alex Deucher
On Tue, Feb 22, 2022 at 8:17 AM Maíra Canal wrote: > > The variable tmp is not used in the dce_v6_0_hpd_fini and > dce_v8_0_hpd_fini functions. Therefor, the variable is removed in order to > avoid the following Clang warnings: > > drivers/gpu/drm/amd/amdgpu/dce_v6_0.c:331:6: warning: variable

[PATCH 02/10] drm/amdgpu: Remove tmp unused variable

2022-02-22 Thread Maíra Canal
The variable tmp is not used in the dce_v6_0_hpd_fini and dce_v8_0_hpd_fini functions. Therefor, the variable is removed in order to avoid the following Clang warnings: drivers/gpu/drm/amd/amdgpu/dce_v6_0.c:331:6: warning: variable 'tmp' set but not used [-Wunused-but-set-variable] u32 tmp;