mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 17:36:11 +00:00
And add another corner case skip
This commit is contained in:
parent
0f65ee9576
commit
3dda357445
@ -285,7 +285,11 @@ static int init_nouveau(void)
|
||||
data, size, &nchannel);
|
||||
if (ret) {
|
||||
fprintf(stderr, "Error creating GPU channel: %d\n", ret);
|
||||
return ret;
|
||||
if (ret == -ENODEV) {
|
||||
fprintf(stderr, "Make sure nouveau_accel is active\n");
|
||||
fprintf(stderr, "nvd9 is likely broken regardless\n");
|
||||
}
|
||||
return 77;
|
||||
}
|
||||
|
||||
fifo = nchannel->data;
|
||||
|
Loading…
x
Reference in New Issue
Block a user