diff options
author | Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> | 2023-10-03 17:24:28 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2023-10-09 23:48:22 +0300 |
commit | d310d18bfca90bca56672a7ad08b63a0d7c621d5 (patch) | |
tree | 94cccae79ec1db7c71fa0c9fb08df8b64eeb2126 /drivers/gpu/drm/amd/display/dc/basics/Makefile | |
parent | f8cd72728bdcf72d01305c8245b039f0ca9ea088 (diff) | |
download | linux-d310d18bfca90bca56672a7ad08b63a0d7c621d5.tar.xz |
drm/amd/display: Move dce_calcs from DML folder
dce_calcs does not have FPU operations, and it is required for DCE and
DCN. Remove this file from the DML folder and add it to the basic folder
visible for DCE and DCN.
Reviewed-by: Qingqing Zhuo <Qingqing.Zhuo@amd.com>
Signed-off-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/basics/Makefile')
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/basics/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/basics/Makefile b/drivers/gpu/drm/amd/display/dc/basics/Makefile index 01b99e0d788e..ee611b03dc48 100644 --- a/drivers/gpu/drm/amd/display/dc/basics/Makefile +++ b/drivers/gpu/drm/amd/display/dc/basics/Makefile @@ -24,7 +24,12 @@ # It provides the general basic services required by other DAL # subcomponents. -BASICS = conversion.o fixpt31_32.o vector.o dc_common.o +BASICS := \ + conversion.o \ + fixpt31_32.o \ + vector.o \ + dc_common.o \ + dce_calcs.o AMD_DAL_BASICS = $(addprefix $(AMDDALPATH)/dc/basics/,$(BASICS)) |