mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 09:28:07 +02:00
pipe-loader: Remove a few debug_printfs
On debug builds these were always being printed. Reviewed-by: Francisco Jerez <currojerez@riseup.net>
This commit is contained in:
parent
438b1da7e5
commit
024e1732cb
2 changed files with 0 additions and 4 deletions
|
|
@ -92,7 +92,6 @@ pipe_loader_find_module(struct pipe_loader_device *dev,
|
|||
if (ret > 0 && ret < sizeof(path)) {
|
||||
lib = util_dl_open(path);
|
||||
if (lib) {
|
||||
debug_printf("loaded %s\n", path);
|
||||
return lib;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -96,7 +96,6 @@ find_drm_pci_id(struct pipe_loader_drm_device *ddev)
|
|||
if (udev)
|
||||
udev_unref(udev);
|
||||
|
||||
debug_printf("pci id for fd %d not found\n", ddev->fd);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
@ -126,8 +125,6 @@ find_drm_driver_name(struct pipe_loader_drm_device *ddev)
|
|||
return FALSE;
|
||||
|
||||
found:
|
||||
debug_printf("driver for %04x:%04x: %s\n", dev->u.pci.vendor_id,
|
||||
dev->u.pci.chip_id, dev->driver_name);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue