]> git.baikalelectronics.ru Git - kernel.git/commit
drm/amd/display: Initialize attribute for hdcp_srm sysfs file
authorDavid Ward <david.ward@gatech.edu>
Mon, 10 May 2021 09:30:39 +0000 (05:30 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 13 May 2021 14:46:06 +0000 (10:46 -0400)
commit2d13cc0151ec848d5acc823d0885e9e8eccb177e
treee07172df310c03b6e627b0be1249f83215281ce3
parent93d896685a3b3c68999980d2de04bdce375d4ace
drm/amd/display: Initialize attribute for hdcp_srm sysfs file

It is stored in dynamically allocated memory, so sysfs_bin_attr_init() must
be called to initialize it. (Note: "initialization" only sets the .attr.key
member in this struct; it does not change the value of any other members.)

Otherwise, when CONFIG_DEBUG_LOCK_ALLOC=y this message appears during boot:

    BUG: key ffff9248900cd148 has not been registered!

Fixes: 70a026f1fa27 ("drm/amd/display: Add sysfs interface for set/get srm")
Bug: https://gitlab.freedesktop.org/drm/amd/-/issues/1586
Reported-by: Mikhail Gavrilov <mikhail.v.gavrilov@gmail.com>
Signed-off-by: David Ward <david.ward@gatech.edu>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_hdcp.c