summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Estevam <[email protected]>2017-03-04 19:07:27 -0300
committerEmil Velikov <[email protected]>2017-03-08 16:35:00 +0000
commit78c57726335fe22cb4579bcf562d2394adc234b5 (patch)
tree9581575e2d1111d6999341ad34d3c1ebdbf32daa
parent61c38d14b7b1d0ccacc440340ee0b1bc4454eca2 (diff)
loader: Move non-error message to debug level
Currently when running mesa on imx6 the following loader warnings are seen: # kmscube -D /dev/dri/card1 MESA-LOADER: device is not located on the PCI bus MESA-LOADER: device is not located on the PCI bus MESA-LOADER: device is not located on the PCI bus Using display 0x1920948 with EGL version 1.4 As this is not an error message, change it to debug level in order to have a cleaner log output. Signed-off-by: Fabio Estevam <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
-rw-r--r--src/loader/loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/loader/loader.c b/src/loader/loader.c
index 3b28a0e7db7..9b4752d3138 100644
--- a/src/loader/loader.c
+++ b/src/loader/loader.c
@@ -282,7 +282,7 @@ drm_get_pci_id_for_fd(int fd, int *vendor_id, int *chip_id)
ret = 1;
}
else {
- log_(_LOADER_WARNING, "MESA-LOADER: device is not located on the PCI bus\n");
+ log_(_LOADER_DEBUG, "MESA-LOADER: device is not located on the PCI bus\n");
ret = 0;
}
drmFreeDevice(&device);