| .. | .. |
|---|
| 40 | 40 | * |
|---|
| 41 | 41 | */ |
|---|
| 42 | 42 | |
|---|
| 43 | | -void dc_conn_log_hex_linux(const uint8_t *hex_data, int hex_data_count); |
|---|
| 44 | | - |
|---|
| 45 | 43 | void pre_surface_trace( |
|---|
| 46 | 44 | struct dc *dc, |
|---|
| 47 | 45 | const struct dc_plane_state *const *plane_states, |
|---|
| .. | .. |
|---|
| 102 | 100 | #define CONN_DATA_DETECT(link, hex_data, hex_len, ...) \ |
|---|
| 103 | 101 | do { \ |
|---|
| 104 | 102 | (void)(link); \ |
|---|
| 105 | | - dc_conn_log_hex_linux(hex_data, hex_len); \ |
|---|
| 106 | 103 | DC_LOG_EVENT_DETECTION(__VA_ARGS__); \ |
|---|
| 107 | 104 | } while (0) |
|---|
| 108 | 105 | |
|---|
| 109 | 106 | #define CONN_DATA_LINK_LOSS(link, hex_data, hex_len, ...) \ |
|---|
| 110 | 107 | do { \ |
|---|
| 111 | 108 | (void)(link); \ |
|---|
| 112 | | - dc_conn_log_hex_linux(hex_data, hex_len); \ |
|---|
| 113 | 109 | DC_LOG_EVENT_LINK_LOSS(__VA_ARGS__); \ |
|---|
| 114 | 110 | } while (0) |
|---|
| 115 | 111 | |
|---|
| .. | .. |
|---|
| 129 | 125 | * Display Test Next logging |
|---|
| 130 | 126 | */ |
|---|
| 131 | 127 | #define DTN_INFO_BEGIN() \ |
|---|
| 132 | | - dm_dtn_log_begin(dc_ctx) |
|---|
| 128 | + dm_dtn_log_begin(dc_ctx, log_ctx) |
|---|
| 133 | 129 | |
|---|
| 134 | 130 | #define DTN_INFO(msg, ...) \ |
|---|
| 135 | | - dm_dtn_log_append_v(dc_ctx, msg, ##__VA_ARGS__) |
|---|
| 131 | + dm_dtn_log_append_v(dc_ctx, log_ctx, msg, ##__VA_ARGS__) |
|---|
| 136 | 132 | |
|---|
| 137 | 133 | #define DTN_INFO_END() \ |
|---|
| 138 | | - dm_dtn_log_end(dc_ctx) |
|---|
| 134 | + dm_dtn_log_end(dc_ctx, log_ctx) |
|---|
| 139 | 135 | |
|---|
| 140 | 136 | #define PERFORMANCE_TRACE_START() \ |
|---|
| 141 | 137 | unsigned long long perf_trc_start_stmp = dm_get_timestamp(dc->ctx) |
|---|
| .. | .. |
|---|
| 155 | 151 | |
|---|
| 156 | 152 | #define DISPLAY_STATS_END(entry) (void)(entry) |
|---|
| 157 | 153 | |
|---|
| 154 | +#define LOG_GAMMA_WRITE(msg, ...) |
|---|
| 155 | + |
|---|
| 158 | 156 | #endif /* __DAL_LOGGER_INTERFACE_H__ */ |
|---|