drm/amd/display: Refactor OPTC into component folder
authorParandhaman K <parandhaman.k@amd.com>
Thu, 9 Nov 2023 10:22:17 +0000 (15:52 +0530)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 29 Nov 2023 21:49:01 +0000 (16:49 -0500)
commit3d0fe49454652117522f60bfbefb978ba0e5300b
treece942be1404f69fccecf14f5a857adaff77707f4
parent5a9a2cc8ae1889c4002850b00fd4fd9691dfac4e
drm/amd/display: Refactor OPTC into component folder

[why]
Move all optc files to unique
folder optc.

[how]
creating optc repo in dc, and moved the dcnxx_optc.c and .h files into
corresponding new folders inside the optc and cleared the linkage
errors by adding relative paths in the Makefile.template.

Reviewed-by: Martin Leung <martin.leung@amd.com>
Acked-by: Hamza Mahfooz <hamza.mahfooz@amd.com>
Signed-off-by: Parandhaman K <parandhaman.k@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
49 files changed:
drivers/gpu/drm/amd/display/Makefile
drivers/gpu/drm/amd/display/dc/Makefile
drivers/gpu/drm/amd/display/dc/dcn10/Makefile
drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer_debug.c
drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn20/Makefile
drivers/gpu/drm/amd/display/dc/dcn20/dcn20_optc.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn20/dcn20_optc.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn201/Makefile
drivers/gpu/drm/amd/display/dc/dcn201/dcn201_optc.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn201/dcn201_optc.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn30/Makefile
drivers/gpu/drm/amd/display/dc/dcn30/dcn30_optc.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn30/dcn30_optc.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn301/Makefile
drivers/gpu/drm/amd/display/dc/dcn301/dcn301_optc.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn301/dcn301_optc.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn31/Makefile
drivers/gpu/drm/amd/display/dc/dcn31/dcn31_optc.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn31/dcn31_optc.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn314/Makefile
drivers/gpu/drm/amd/display/dc/dcn314/dcn314_optc.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn314/dcn314_optc.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn32/Makefile
drivers/gpu/drm/amd/display/dc/dcn32/dcn32_optc.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn32/dcn32_optc.h [deleted file]
drivers/gpu/drm/amd/display/dc/dcn35/Makefile
drivers/gpu/drm/amd/display/dc/dcn35/dcn35_optc.c [deleted file]
drivers/gpu/drm/amd/display/dc/dcn35/dcn35_optc.h [deleted file]
drivers/gpu/drm/amd/display/dc/optc/Makefile [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn10/dcn10_optc.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn10/dcn10_optc.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn20/dcn20_optc.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn20/dcn20_optc.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn201/dcn201_optc.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn201/dcn201_optc.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn30/dcn30_optc.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn30/dcn30_optc.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn301/dcn301_optc.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn301/dcn301_optc.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn31/dcn31_optc.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn31/dcn31_optc.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn314/dcn314_optc.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn314/dcn314_optc.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn32/dcn32_optc.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn32/dcn32_optc.h [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn35/dcn35_optc.c [new file with mode: 0644]
drivers/gpu/drm/amd/display/dc/optc/dcn35/dcn35_optc.h [new file with mode: 0644]