summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/amd/display/dc/inc/link_hwss.h
diff options
context:
space:
mode:
authorWenjing Liu <wenjing.liu@amd.com>2022-01-19 11:24:41 +0300
committerAlex Deucher <alexander.deucher@amd.com>2022-01-26 02:00:34 +0300
commit3ea07c89fbb777669c668452e94275a98dc8afbe (patch)
treed95888e252c3fb0947d5c1d3a36e1087df3545ee /drivers/gpu/drm/amd/display/dc/inc/link_hwss.h
parentccba4e5bc856471ed009d92747376ee506fcc6ad (diff)
downloadlinux-3ea07c89fbb777669c668452e94275a98dc8afbe.tar.xz
drm/amd/display: rename dc_link_hwss struct to link_hwss
[why] This is internal to dc so we don't have to add a prefix to indicate it is dc link_hwss instead someone else link_hwss. Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Reviewed-by: Aric Cyr <Aric.Cyr@amd.com> Acked-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> Signed-off-by: Wenjing Liu <wenjing.liu@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/inc/link_hwss.h')
-rw-r--r--drivers/gpu/drm/amd/display/dc/inc/link_hwss.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/inc/link_hwss.h b/drivers/gpu/drm/amd/display/dc/inc/link_hwss.h
index 8eff386da95e..5b361924ed8f 100644
--- a/drivers/gpu/drm/amd/display/dc/inc/link_hwss.h
+++ b/drivers/gpu/drm/amd/display/dc/inc/link_hwss.h
@@ -77,7 +77,7 @@ struct link_resource;
struct fixed31_32;
struct pipe_ctx;
-struct dc_link_hwss {
+struct link_hwss {
/* you must define a dummy implementation and assign the function to
* dummy_link_hwss if you don't want to check for NULL pointer
*/
@@ -92,6 +92,6 @@ struct dc_link_hwss {
struct fixed31_32 throttled_vcp_size);
};
-const struct dc_link_hwss *dc_link_hwss_get(const struct dc_link *link, const struct link_resource *link_res);
+const struct link_hwss *dc_link_hwss_get(const struct dc_link *link, const struct link_resource *link_res);
#endif /* __DC_LINK_HWSS_H__ */