Re: [Intel-gfx] [PATCH i-g-t] lib/chipset: Properly skip on non-Intel

2016-10-11 Thread Petri Latvala
On Tue, Oct 11, 2016 at 11:36:08AM +0200, Daniel Vetter wrote:
> Random drive-by I noticed while hacking on piglit.
> 
> Signed-off-by: Daniel Vetter 
> ---
>  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,


Reviewed-by: Petri Latvala 

There's a check for vendor_id equaling 0x8086 some lines below, and I
debated on IRC for changing it to igt_require as well. Then again it's
quite impossible to reach, so might as well leave it as a noisy
failure. I'll change it to igt_fail_on_f later.


--
Petri Latvala
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx


[Intel-gfx] [PATCH i-g-t] lib/chipset: Properly skip on non-Intel

2016-10-11 Thread Daniel Vetter
Random drive-by I noticed while hacking on piglit.

Signed-off-by: Daniel Vetter 
---
 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

___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx