diff options
author | David Tadokoro <davidbtadokoro@usp.br> | 2023-03-05 23:24:27 -0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2023-03-08 14:04:45 -0500 |
commit | 8bf0d9cdf36b0bebf17b733e3f5158783d765df3 (patch) | |
tree | 91e06e4c68f3725d37621b42f6a286265b3054b0 /Documentation/gpu | |
parent | 920da947af28638bc94bb0012ce8600ba2d06c0e (diff) | |
download | lwn-8bf0d9cdf36b0bebf17b733e3f5158783d765df3.tar.gz lwn-8bf0d9cdf36b0bebf17b733e3f5158783d765df3.zip |
drm/amd/display: add prefix to amdgpu_dm_plane.h functions
The amdgpu_dm_plane.h functions didn't have names that indicated where
they were declared.
To better filter results in debug tools like ftrace, prefix these
functions with 'amdgpu_dm_plane_'.
Note that we may want to make this same change in other files like
amdgpu_dm_crtc.h.
Signed-off-by: David Tadokoro <davidbtadokoro@usp.br>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'Documentation/gpu')
-rw-r--r-- | Documentation/gpu/amdgpu/display/display-manager.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/gpu/amdgpu/display/display-manager.rst b/Documentation/gpu/amdgpu/display/display-manager.rst index b7abb18cfc82..be2651ecdd7f 100644 --- a/Documentation/gpu/amdgpu/display/display-manager.rst +++ b/Documentation/gpu/amdgpu/display/display-manager.rst @@ -173,7 +173,7 @@ The alpha blending equation is configured from DRM to DC interface by the following path: 1. When updating a :c:type:`drm_plane_state <drm_plane_state>`, DM calls - :c:type:`fill_blending_from_plane_state()` that maps + :c:type:`amdgpu_dm_plane_fill_blending_from_plane_state()` that maps :c:type:`drm_plane_state <drm_plane_state>` attributes to :c:type:`dc_plane_info <dc_plane_info>` struct to be handled in the OS-agnostic component (DC). |