aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display/include/logger_interface.h
diff options
context:
space:
mode:
authorHarry Wentland <[email protected]>2017-07-23 00:05:20 +0000
committerAlex Deucher <[email protected]>2017-09-26 22:15:36 +0000
commitd0778ebfd58f5650de17531296ee5ecdde39ba68 (patch)
treea06a409667c5e31d8195d485d001a1b89a88cf37 /drivers/gpu/drm/amd/display/include/logger_interface.h
parentdrm/amd/display: Roll core_surface into dc_surface (diff)
downloadkernel-d0778ebfd58f5650de17531296ee5ecdde39ba68.tar.gz
kernel-d0778ebfd58f5650de17531296ee5ecdde39ba68.zip
drm/amd/display: Roll core_link into dc_link
Signed-off-by: Harry Wentland <[email protected]> Reviewed-by: Tony Cheng <[email protected]> Acked-by: Harry Wentland <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/display/include/logger_interface.h')
-rw-r--r--drivers/gpu/drm/amd/display/include/logger_interface.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/amd/display/include/logger_interface.h b/drivers/gpu/drm/amd/display/include/logger_interface.h
index 6e6fd4e8fc00..3adf3cfc7aba 100644
--- a/drivers/gpu/drm/amd/display/include/logger_interface.h
+++ b/drivers/gpu/drm/amd/display/include/logger_interface.h
@@ -140,19 +140,19 @@ void context_clock_trace(
*/
#define CONN_DATA_DETECT(link, hex_data, hex_len, ...) \
- dc_conn_log(link->ctx, &link->public, hex_data, hex_len, \
+ dc_conn_log(link->ctx, link, hex_data, hex_len, \
LOG_EVENT_DETECTION, ##__VA_ARGS__)
#define CONN_DATA_LINK_LOSS(link, hex_data, hex_len, ...) \
- dc_conn_log(link->ctx, &link->public, hex_data, hex_len, \
+ dc_conn_log(link->ctx, link, hex_data, hex_len, \
LOG_EVENT_LINK_LOSS, ##__VA_ARGS__)
#define CONN_MSG_LT(link, ...) \
- dc_conn_log(link->ctx, &link->public, NULL, 0, \
+ dc_conn_log(link->ctx, link, NULL, 0, \
LOG_EVENT_LINK_TRAINING, ##__VA_ARGS__)
#define CONN_MSG_MODE(link, ...) \
- dc_conn_log(link->ctx, &link->public, NULL, 0, \
+ dc_conn_log(link->ctx, link, NULL, 0, \
LOG_EVENT_MODE_SET, ##__VA_ARGS__)
#endif /* __DAL_LOGGER_INTERFACE_H__ */