Commit e6a8a000 authored by Austin Zheng's avatar Austin Zheng Committed by Alex Deucher
Browse files

drm/amd/display: Rename dml2 to dml2_0 folder



[Why]
dml2 folder contains all logic for all versions of DML2
This is currently DML2.0 and DML2.1.
Rename dml2 to dml2_0 folder to reflect this better (dml2_0
for DML2.0).

[How]
Rename dml2 to dml2_0 folder and update dml2 references to
use dml2_0 folder.

Reviewed-by: default avatarDillon Varone <dillon.varone@amd.com>
Signed-off-by: default avatarAustin Zheng <Austin.Zheng@amd.com>
Signed-off-by: default avatarwaynelin <Wayne.Lin@amd.com>
Tested-by: default avatarDan Wheeler <daniel.wheeler@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 6cf0552e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ DC_LIBS += dcn30
DC_LIBS += dcn301
DC_LIBS += dcn31
DC_LIBS += dml
DC_LIBS += dml2
DC_LIBS += dml2_0
DC_LIBS += soc_and_ip_translator
endif

+1 −1
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@
#include "hw_sequencer_private.h"

#if defined(CONFIG_DRM_AMD_DC_FP)
#include "dml2/dml2_internal_types.h"
#include "dml2_0/dml2_internal_types.h"
#include "soc_and_ip_translator.h"
#endif

+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@
#define DC_LOGGER \
	dc->ctx->logger
#define DC_LOGGER_INIT(logger)
#include "dml2/dml2_wrapper.h"
#include "dml2_0/dml2_wrapper.h"

#define UNABLE_TO_SPLIT -1

+2 −2
Original line number Diff line number Diff line
@@ -35,8 +35,8 @@
#include "link_enc_cfg.h"

#if defined(CONFIG_DRM_AMD_DC_FP)
#include "dml2/dml2_wrapper.h"
#include "dml2/dml2_internal_types.h"
#include "dml2_0/dml2_wrapper.h"
#include "dml2_0/dml2_internal_types.h"
#endif

#define DC_LOGGER \
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@
#include "inc/hw/dmcu.h"
#include "dml/display_mode_lib.h"

#include "dml2/dml2_wrapper.h"
#include "dml2_0/dml2_wrapper.h"

#include "dmub/inc/dmub_cmd.h"

Loading