[Mesa-dev] [PATCH] i965: Don't call abort() on an unknown device.

2014-02-10 Thread Kenneth Graunke
If we don't recognize the PCI ID, we can't reasonably load the driver. However, calling abort() is quite rude - it means the application that tried to initialize us (possibly the X server) can't continue via fallback paths. We already have a more polite mechanism - failing to create the context.

Re: [Mesa-dev] [PATCH] i965: Don't call abort() on an unknown device.

2014-02-10 Thread Ian Romanick
On 02/10/2014 01:54 AM, Kenneth Graunke wrote: If we don't recognize the PCI ID, we can't reasonably load the driver. However, calling abort() is quite rude - it means the application that tried to initialize us (possibly the X server) can't continue via fallback paths. We already have a more