]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
drm/amd/display: Initialize stream_update with memset
authorNicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Fri, 22 Mar 2019 13:59:32 +0000 (09:59 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 31 May 2019 13:43:35 +0000 (06:43 -0700)
commit28968ec7fda32db4af34c4987bd9ab4cebb5bbba
treefd4d59eafb174d2d285ac8b490440a5ecd333e04
parent82222b9679a75d74f10e72c17b9eca692e7182a7
drm/amd/display: Initialize stream_update with memset

[ Upstream commit 2aa632c5ffbedb2ee0e68857683466ea788f17eb ]

The brace initialization used here generates warnings on some
compilers. For example, on GCC 4.9:

[...] In function ‘dm_determine_update_type_for_commit’:
[...] error: missing braces around initializer [-Werror=missing-braces]
   struct dc_stream_update stream_update = { 0 };
          ^

Use memset to make this more portable.

v2: Specify the compiler / diagnostic in the commit message (Paul)

Cc: Sun peng Li <Sunpeng.Li@amd.com>
Cc: Harry Wentland <Harry.Wentland@amd.com>
Signed-off-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Reviewed-by: Leo Li <sunpeng.li@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c