intel_extreme: remove an useless trace

The get_edid_info function just does a memcpy of the info from the
driver. There is no need to trace to syslog everytime this happens
(which is a lot).

Also convert an error message from TRACE to ERROR so it remains visible
when tracing is disabled.
This commit is contained in:
Adrien Destugues
2020-09-06 16:27:20 +02:00
parent eac3b2e064
commit c253ef85df
@@ -349,7 +349,7 @@ intel_set_display_mode(display_mode* mode)
set_frame_buffer_base();
}
TRACE("%s: Failed to allocate framebuffer !\n", __func__);
ERROR("%s: Failed to allocate framebuffer !\n", __func__);
return B_NO_MEMORY;
}
@@ -504,8 +504,6 @@ intel_get_display_mode(display_mode* _currentMode)
status_t
intel_get_edid_info(void* info, size_t size, uint32* _version)
{
CALLED();
if (!gInfo->has_edid)
return B_ERROR;
if (size < sizeof(struct edid1_info))