mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
drm/radeon: Use only one line for whole DPCD debug output
Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
a624f4290a
commit
4e5f97deda
@ -403,16 +403,18 @@ bool radeon_dp_getdpcd(struct radeon_connector *radeon_connector)
|
|||||||
{
|
{
|
||||||
struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv;
|
struct radeon_connector_atom_dig *dig_connector = radeon_connector->con_priv;
|
||||||
u8 msg[DP_DPCD_SIZE];
|
u8 msg[DP_DPCD_SIZE];
|
||||||
int ret, i;
|
int ret;
|
||||||
|
|
||||||
|
char dpcd_hex_dump[DP_DPCD_SIZE * 3];
|
||||||
|
|
||||||
ret = drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_DPCD_REV, msg,
|
ret = drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_DPCD_REV, msg,
|
||||||
DP_DPCD_SIZE);
|
DP_DPCD_SIZE);
|
||||||
if (ret > 0) {
|
if (ret > 0) {
|
||||||
memcpy(dig_connector->dpcd, msg, DP_DPCD_SIZE);
|
memcpy(dig_connector->dpcd, msg, DP_DPCD_SIZE);
|
||||||
DRM_DEBUG_KMS("DPCD: ");
|
|
||||||
for (i = 0; i < DP_DPCD_SIZE; i++)
|
hex_dump_to_buffer(dig_connector->dpcd, sizeof(dig_connector->dpcd),
|
||||||
DRM_DEBUG_KMS("%02x ", msg[i]);
|
32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
|
||||||
DRM_DEBUG_KMS("\n");
|
DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
|
||||||
|
|
||||||
radeon_dp_probe_oui(radeon_connector);
|
radeon_dp_probe_oui(radeon_connector);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user