drm/amd/display: drop register logger and pid/tgid getters

While I'm sure this is useful I think we should bring it back later.

It's usage of pid/tgid is incorrect, you have to get/put
pid/tgids not store them away.

Signed-off-by: Dave Airlie <airlied@redhat.com>
Reviewed-by: Tony Cheng <Tony.Cheng@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Dave Airlie
2016-12-13 16:41:07 +10:00
committed by Alex Deucher
parent 55b99b4640
commit 2a0998846d
5 changed files with 1 additions and 266 deletions

View File

@@ -109,12 +109,6 @@ static inline uint32_t dm_read_reg_func(
value = cgs_read_register(ctx->cgs_device, address);
#if defined(__DAL_REGISTER_LOGGER__)
if (true == dal_reg_logger_should_dump_register()) {
dal_reg_logger_rw_count_increment();
DRM_INFO("%s DC_READ_REG: 0x%x 0x%x\n", func_name, address, value);
}
#endif
return value;
}
@@ -127,13 +121,6 @@ static inline void dm_write_reg_func(
uint32_t value,
const char *func_name)
{
#if defined(__DAL_REGISTER_LOGGER__)
if (true == dal_reg_logger_should_dump_register()) {
dal_reg_logger_rw_count_increment();
DRM_INFO("%s DC_WRITE_REG: 0x%x 0x%x\n", func_name, address, value);
}
#endif
if (address == 0) {
DC_ERR("invalid register write. address = 0");
return;
@@ -418,7 +405,4 @@ bool dm_dmcu_set_pipe(struct dc_context *ctx, unsigned int controller_id);
#define dm_log_to_buffer(buffer, size, fmt, args)\
vsnprintf(buffer, size, fmt, args)
long dm_get_pid(void);
long dm_get_tgid(void);
#endif /* __DM_SERVICES_H__ */