drm/amd/display: clean code for transition event log.

[Why]
There are same purpose transition events.

[How]
remove the redundant event log.

Signed-off-by: Chiawen Huang <chiawen.huang@amd.com>
Reviewed-by: Tony Cheng <Tony.Cheng@amd.com>
Acked-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Chiawen Huang 2018-08-28 13:38:34 +08:00 committed by Alex Deucher
parent 9c09df569d
commit 6787359b14
3 changed files with 0 additions and 29 deletions

View File

@ -31,8 +31,6 @@
#define __DM_EVENT_LOG_H__
#define EVENT_LOG_I2CAUX_READ(transType, dcc, address, status, len, data)
#define EVENT_LOG_I2CAUX_WRITE(transType, dcc, address, status, len, data)
#define EVENT_LOG_AUX_REQ(dcc, type, action, address, len, data)
#define EVENT_LOG_AUX_Reply(dcc, type, swStatus, replyStatus, len, data)

View File

@ -297,12 +297,6 @@ static bool read_command(
if (request->payload.address_space ==
I2CAUX_TRANSACTION_ADDRESS_SPACE_DPCD) {
EVENT_LOG_I2CAUX_READ(request->payload.address_space,
engine->base.ddc->pin_data->en,
request->payload.address,
request->status,
request->payload.length,
request->payload.data);
DC_LOG_I2C_AUX("READ: addr:0x%x value:0x%x Result:%d",
request->payload.address,
request->payload.data[0],
@ -519,12 +513,6 @@ static bool write_command(
if (request->payload.address_space ==
I2CAUX_TRANSACTION_ADDRESS_SPACE_DPCD) {
EVENT_LOG_I2CAUX_WRITE(request->payload.address_space,
engine->base.ddc->pin_data->en,
request->payload.address,
request->status,
request->payload.length,
request->payload.data);
DC_LOG_I2C_AUX("WRITE: addr:0x%x value:0x%x Result:%d",
request->payload.address,
request->payload.data[0],

View File

@ -171,21 +171,6 @@ bool dal_i2c_hw_engine_submit_request(
process_channel_reply(&hw_engine->base, &reply);
}
if (i2caux_request->operation == I2CAUX_TRANSACTION_READ) {
EVENT_LOG_I2CAUX_READ(i2caux_request->payload.address_space,
engine->ddc->pin_data->en,
i2caux_request->payload.address,
i2caux_request->status,
i2caux_request->payload.length,
i2caux_request->payload.data);
} else if (i2caux_request->operation == I2CAUX_TRANSACTION_WRITE) {
EVENT_LOG_I2CAUX_WRITE(i2caux_request->payload.address_space,
engine->ddc->pin_data->en,
i2caux_request->payload.address,
i2caux_request->status,
i2caux_request->payload.length,
i2caux_request->payload.data);
}
return result;