Commit 713d451d authored by Bhawanpreet Lakha's avatar Bhawanpreet Lakha Committed by Alex Deucher

drm/amd/display: Use MACROS instead of dm_logger

Use DC_LOGGER macro for logs.
Signed-off-by: default avatarBhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Reviewed-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent f0ba51e8
...@@ -36,26 +36,22 @@ ...@@ -36,26 +36,22 @@
#include "hw_sequencer.h" #include "hw_sequencer.h"
#include "resource.h" #include "resource.h"
#define DC_LOGGER \
logger
#define SURFACE_TRACE(...) do {\ #define SURFACE_TRACE(...) do {\
if (dc->debug.surface_trace) \ if (dc->debug.surface_trace) \
dm_logger_write(logger, \ DC_LOG_IF_TRACE(__VA_ARGS__); \
LOG_IF_TRACE, \
##__VA_ARGS__); \
} while (0) } while (0)
#define TIMING_TRACE(...) do {\ #define TIMING_TRACE(...) do {\
if (dc->debug.timing_trace) \ if (dc->debug.timing_trace) \
dm_logger_write(logger, \ DC_LOG_SYNC(__VA_ARGS__); \
LOG_SYNC, \
##__VA_ARGS__); \
} while (0) } while (0)
#define CLOCK_TRACE(...) do {\ #define CLOCK_TRACE(...) do {\
if (dc->debug.clock_trace) \ if (dc->debug.clock_trace) \
dm_logger_write(logger, \ DC_LOG_BANDWIDTH_CALCS(__VA_ARGS__); \
LOG_BANDWIDTH_CALCS, \
##__VA_ARGS__); \
} while (0) } while (0)
void pre_surface_trace( void pre_surface_trace(
......
...@@ -767,8 +767,7 @@ void dce110_link_encoder_construct( ...@@ -767,8 +767,7 @@ void dce110_link_encoder_construct(
bp_cap_info.DP_HBR3_EN; bp_cap_info.DP_HBR3_EN;
enc110->base.features.flags.bits.HDMI_6GB_EN = bp_cap_info.HDMI_6GB_EN; enc110->base.features.flags.bits.HDMI_6GB_EN = bp_cap_info.HDMI_6GB_EN;
} else { } else {
dm_logger_write(enc110->base.ctx->logger, LOG_WARNING, DC_LOG_WARNING("%s: Failed to get encoder_cap_info from VBIOS with error code %d!\n",
"%s: Failed to get encoder_cap_info from VBIOS with error code %d!\n",
__func__, __func__,
result); result);
} }
......
...@@ -27,8 +27,11 @@ ...@@ -27,8 +27,11 @@
#ifndef __DML_LOGGER_H_ #ifndef __DML_LOGGER_H_
#define __DML_LOGGER_H_ #define __DML_LOGGER_H_
#define dml_print(str, ...) {dm_logger_write(mode_lib->logger, LOG_DML, str, ##__VA_ARGS__); } #define DC_LOGGER \
#define DTRACE(str, ...) {dm_logger_write(mode_lib->logger, LOG_DML, str, ##__VA_ARGS__); } mode_lib->logger
#define dml_print(str, ...) {DC_LOG_DML(str, ##__VA_ARGS__); }
#define DTRACE(str, ...) {DC_LOG_DML(str, ##__VA_ARGS__); }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment