summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/pipe-loader
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2012-09-13 14:53:32 +0000
committerTom Stellard <thomas.stellard@amd.com>2012-09-21 19:45:07 +0000
commit024e1732cba28adc0c6055744339048dee376482 (patch)
treed06a87f212139efcd3f8e99f277b5e0541941bc6 /src/gallium/auxiliary/pipe-loader
parent438b1da7e552cff3f486944baff92ef6e3bb9608 (diff)
pipe-loader: Remove a few debug_printfs
On debug builds these were always being printed. Reviewed-by: Francisco Jerez <currojerez@riseup.net>
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader')
-rw-r--r--src/gallium/auxiliary/pipe-loader/pipe_loader.c1
-rw-r--r--src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c3
2 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader.c b/src/gallium/auxiliary/pipe-loader/pipe_loader.c
index 6a10ac3998d..b1d92855562 100644
--- a/src/gallium/auxiliary/pipe-loader/pipe_loader.c
+++ b/src/gallium/auxiliary/pipe-loader/pipe_loader.c
@@ -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;
}
}
diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
index 64bd921de02..6dedc413989 100644
--- a/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
+++ b/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
@@ -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;
}