diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2021-04-23 22:43:18 +0200 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2021-05-20 04:28:51 +0200 |
commit | cbd4945ca5b88ed015ab61e70f788de1a71bf9cc (patch) | |
tree | 25bbce9a106e24418962894f1bdfe288d3c2f6c9 /drivers/gpu | |
parent | drm/amdgpu/display: fix build when CONFIG_DRM_AMD_DC_DCN is not defined (diff) | |
download | linux-cbd4945ca5b88ed015ab61e70f788de1a71bf9cc.tar.xz linux-cbd4945ca5b88ed015ab61e70f788de1a71bf9cc.zip |
drm/amdgpu/display: fix dal_allocation documentation
Add missing structure elements.
Fixes: 0dd79532340568 ("drm/amdgpu/display: Implement functions to let DC allocate GPU memory")
Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h index 4712984efb9a..c6f79c7dfac4 100644 --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h @@ -139,6 +139,10 @@ struct amdgpu_dm_backlight_caps { /** * struct dal_allocation - Tracks mapped FB memory for SMU communication + * @list: list of dal allocations + * @bo: GPU buffer object + * @cpu_ptr: CPU virtual address of the GPU buffer object + * @gpu_addr: GPU virtual address of the GPU buffer object */ struct dal_allocation { struct list_head list; |