[Intel-gfx] [PATCH i-g-t] lib/chipset: Properly skip on non-Intel
Daniel Vetter
daniel.vetter at ffwll.ch
Tue Oct 11 09:36:08 UTC 2016
Random drive-by I noticed while hacking on piglit.
Signed-off-by: Daniel Vetter <daniel.vetter at ffwll.ch>
---
lib/intel_chipset.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/intel_chipset.c b/lib/intel_chipset.c
index 777dfa73da80..ab35fa70c167 100644
--- a/lib/intel_chipset.c
+++ b/lib/intel_chipset.c
@@ -100,8 +100,7 @@ intel_get_pci_device(void)
pci_dev = pci_device_next(iter);
pci_iterator_destroy(iter);
}
- if (pci_dev == NULL)
- errx(1, "Couldn't find graphics card");
+ igt_require_f(pci_dev, "Couldn't find Intel graphics card\n");
error = pci_device_probe(pci_dev);
igt_fail_on_f(error != 0,
--
2.9.3
More information about the Intel-gfx
mailing list