mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
loader: move "using driver..." message to loader_get_kernel_driver_name
Move the message to the function which fetches the name. While here use the same DEBUG/WARNING approach like in the PCI case. The current method spam a tad much, plus isn't consistent. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Adam Jackson <ajax@redhat.com> Reviewed-by: Eric Engestrom <eric@engestrom.ch> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4084>
This commit is contained in:
parent
e3572f977f
commit
bf1838838a
1 changed files with 2 additions and 2 deletions
|
|
@ -111,6 +111,8 @@ static char *loader_get_kernel_driver_name(int fd)
|
|||
}
|
||||
|
||||
driver = strndup(version->name, version->name_len);
|
||||
log_(driver ? _LOADER_DEBUG : _LOADER_WARNING, "using driver %s for %d\n",
|
||||
driver, fd);
|
||||
|
||||
drmFreeVersion(version);
|
||||
return driver;
|
||||
|
|
@ -451,8 +453,6 @@ loader_get_driver_for_fd(int fd)
|
|||
|
||||
if (!loader_get_pci_id_for_fd(fd, &vendor_id, &chip_id)) {
|
||||
driver = loader_get_kernel_driver_name(fd);
|
||||
if (driver)
|
||||
log_(_LOADER_INFO, "using driver %s for %d\n", driver, fd);
|
||||
return driver;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue