[Intel-gfx] [PATCH] drm/i915: Fix Haswell/CRW PCI IDs.

2013-03-01 Thread Kenneth Graunke
The second digit was off by one, which meant we accidentally treated GT(n) as GT(n-1). This also meant no support for GT1 at all. Cc: sta...@kernel.org Signed-off-by: Kenneth Graunke --- drivers/gpu/drm/i915/i915_drv.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --g

Re: [Intel-gfx] [PATCH] drm/i915: Fix Haswell/CRW PCI IDs.

2013-03-03 Thread Daniel Vetter
On Fri, Mar 01, 2013 at 05:00:50PM -0800, Kenneth Graunke wrote: > The second digit was off by one, which meant we accidentally treated > GT(n) as GT(n-1). This also meant no support for GT1 at all. > > Cc: sta...@kernel.org > Signed-off-by: Kenneth Graunke Picked up for -fixes, thanks for the p