diff options
| author | Isabella Basso <isabbasso@riseup.net> | 2022-01-07 18:33:36 -0300 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2022-01-18 17:43:36 -0500 |
| commit | 552b7cb0eed12c184b3bdfcc262e96a954a2bc86 (patch) | |
| tree | 9690a5862878591e2f41cad429550d9772bef249 /drivers/gpu/drm/amd/display/dc/Makefile | |
| parent | ce0bdc62e80d40caa346ac4840a20769d5bd1ae6 (diff) | |
| download | cachepc-linux-552b7cb0eed12c184b3bdfcc262e96a954a2bc86.tar.gz cachepc-linux-552b7cb0eed12c184b3bdfcc262e96a954a2bc86.zip | |
drm/amd/display: move calcs folder into DML
The calcs folder has FPU code on it, which should be isolated inside the
DML folder as per https://patchwork.freedesktop.org/series/93042/.
This commit aims single-handedly to correct the location of such FPU
code and does not refactor any functions.
Changes since v2:
- Corrected problems to compile when DCN was disabled.
Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: Isabella Basso <isabbasso@riseup.net>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/Makefile')
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/Makefile b/drivers/gpu/drm/amd/display/dc/Makefile index b1f0d6260226..a4ef8f314307 100644 --- a/drivers/gpu/drm/amd/display/dc/Makefile +++ b/drivers/gpu/drm/amd/display/dc/Makefile @@ -23,12 +23,12 @@ # Makefile for Display Core (dc) component. # -DC_LIBS = basics bios calcs clk_mgr dce gpio irq virtual +DC_LIBS = basics bios clk_mgr dce dml gpio irq virtual ifdef CONFIG_DRM_AMD_DC_DCN DC_LIBS += dcn20 DC_LIBS += dsc -DC_LIBS += dcn10 dml +DC_LIBS += dcn10 DC_LIBS += dcn21 DC_LIBS += dcn201 DC_LIBS += dcn30 |
