diff options
author | Aurabindo Pillai <aurabindo.pillai@amd.com> | 2024-04-19 20:28:17 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-04-27 00:23:16 +0300 |
commit | 5bdf199db700706cdbd61a0bb8204a900ce9b5cb (patch) | |
tree | 8b9d1a5a8360e61cd39260b321e77428135ab88d /drivers/gpu/drm/amd/display/dc/inc/hw | |
parent | 70839da6360500a82e4d5f78499284474cbed7c1 (diff) | |
download | linux-5bdf199db700706cdbd61a0bb8204a900ce9b5cb.tar.xz |
drm/amd/display: Fix SPL related enum definition used in DCN401
Remove a duplicate definition of an SPL related enum transform.h
Since its used in SPL, it has been moved to its own header.
Signed-off-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
Acked-by: Rodrigo Siqueira <rodrigo.siqueira@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/inc/hw')
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/inc/hw/transform.h | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/inc/hw/transform.h b/drivers/gpu/drm/amd/display/dc/inc/hw/transform.h index 9ac9d5e8df8b..a2c57676b08d 100644 --- a/drivers/gpu/drm/amd/display/dc/inc/hw/transform.h +++ b/drivers/gpu/drm/amd/display/dc/inc/hw/transform.h @@ -30,6 +30,8 @@ #include "dc_hw_types.h" #include "fixed31_32.h" +#include "spl/dc_spl_types.h" + #define CSC_TEMPERATURE_MATRIX_SIZE 12 struct bit_depth_reduction_params; @@ -110,22 +112,6 @@ enum graphics_gamut_adjust_type { GRAPHICS_GAMUT_ADJUST_TYPE_SW /* use adjustments */ }; -enum lb_memory_config { - /* Enable all 3 pieces of memory */ - LB_MEMORY_CONFIG_0 = 0, - - /* Enable only the first piece of memory */ - LB_MEMORY_CONFIG_1 = 1, - - /* Enable only the second piece of memory */ - LB_MEMORY_CONFIG_2 = 2, - - /* Only applicable in 4:2:0 mode, enable all 3 pieces of memory and the - * last piece of chroma memory used for the luma storage - */ - LB_MEMORY_CONFIG_3 = 3 -}; - struct xfm_grph_csc_adjustment { struct fixed31_32 temperature_matrix[CSC_TEMPERATURE_MATRIX_SIZE]; enum graphics_gamut_adjust_type gamut_adjust_type; |