]> git.baikalelectronics.ru Git - kernel.git/commit
drm/amd/display: Use memset to initialize variables in amdgpu_dm_atomic_commit_tail
authorNathan Chancellor <natechancellor@gmail.com>
Fri, 1 Feb 2019 20:14:28 +0000 (13:14 -0700)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 6 Feb 2019 02:15:32 +0000 (21:15 -0500)
commitf5af153d37d1b5f2117651a6255e3c93480e6d0f
tree5ffed7fd5cfa7f94f3a664d91e42fc0ec1a0d665
parentd755d433dabec8aef885c1a8267b61701e18c776
drm/amd/display: Use memset to initialize variables in amdgpu_dm_atomic_commit_tail

Clang warns:

drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm.c:5089:60:
warning: suggest braces around initialization of subobject
[-Wmissing-braces]
                struct dc_surface_update dummy_updates[MAX_SURFACES] = { 0 };
                                                                         ^
                                                                         {}

Previous efforts to fix this type of warning by adding or removing
braces have been met with some pushback in favor of using memset [1][2].
Do that here, mirroring commit e1e24c36dec6 ("drm/amdgpu/gmc: fix
compiler errors [-Werror,-Wmissing-braces] (V2)") in this tree.

[1]: https://lore.kernel.org/lkml/022e41c0-8465-dc7a-a45c-64187ecd9684@amd.com/
[2]: https://lore.kernel.org/lkml/20181128.215241.702406654469517539.davem@davemloft.net/

Fixes: d1dcd9a8fb4c ("drm/amd/display: Simplify underscan and ABM commit")
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c