Commit aa46d06b authored by Anson Jacob's avatar Anson Jacob Committed by Alex Deucher

drm/amd/display: Remove unused macros

fixed16_to_double & fixed16_to_double_to_cpu are not used.
Reviewed-by: default avatarRodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Tested-by: default avatarDaniel Wheeler <daniel.wheeler@amd.com>
Acked-by: default avatarAgustin Gutierrez <agustin.gutierrez@amd.com>
Signed-off-by: default avatarAnson Jacob <Anson.Jacob@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 7db581d6
...@@ -3660,9 +3660,6 @@ static enum dml_project get_dml_project_version(uint32_t hw_internal_rev) ...@@ -3660,9 +3660,6 @@ static enum dml_project get_dml_project_version(uint32_t hw_internal_rev)
return DML_PROJECT_NAVI10v2; return DML_PROJECT_NAVI10v2;
} }
#define fixed16_to_double(x) (((double) x) / ((double) (1 << 16)))
#define fixed16_to_double_to_cpu(x) fixed16_to_double(le32_to_cpu(x))
static bool init_soc_bounding_box(struct dc *dc, static bool init_soc_bounding_box(struct dc *dc,
struct dcn20_resource_pool *pool) struct dcn20_resource_pool *pool)
{ {
......
...@@ -1707,9 +1707,6 @@ bool dcn30_release_post_bldn_3dlut( ...@@ -1707,9 +1707,6 @@ bool dcn30_release_post_bldn_3dlut(
return ret; return ret;
} }
#define fixed16_to_double(x) (((double) x) / ((double) (1 << 16)))
#define fixed16_to_double_to_cpu(x) fixed16_to_double(le32_to_cpu(x))
static bool is_soc_bounding_box_valid(struct dc *dc) static bool is_soc_bounding_box_valid(struct dc *dc)
{ {
uint32_t hw_internal_rev = dc->ctx->asic_id.hw_internal_rev; uint32_t hw_internal_rev = dc->ctx->asic_id.hw_internal_rev;
......
...@@ -101,8 +101,6 @@ ...@@ -101,8 +101,6 @@
#include "link_enc_cfg.h" #include "link_enc_cfg.h"
#define DC_LOGGER_INIT(logger) #define DC_LOGGER_INIT(logger)
#define fixed16_to_double(x) (((double) x) / ((double) (1 << 16)))
#define fixed16_to_double_to_cpu(x) fixed16_to_double(le32_to_cpu(x))
#define DCN3_1_DEFAULT_DET_SIZE 384 #define DCN3_1_DEFAULT_DET_SIZE 384
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment