drm: drop mtrr from i915

Alan Hourihane wants to set MTRR in the DDX only as otherwise
we get problems with the shared memory chipset.

From: Alan Hourihane <alanh@fairlite.demon.co.uk>
Signed-off-by: Dave Airlie <airlied@linux.ie>

authored by Dave Airlie and committed by Dave Airlie 792d2b9a 7ccf800e

+4 -1
+4 -1
drivers/char/drm/i915_drv.c
··· 39 39 }; 40 40 41 41 static struct drm_driver driver = { 42 + /* don't use mtrr's here, the Xserver or user space app should 43 + * deal with them for intel hardware. 44 + */ 42 45 .driver_features = 43 - DRIVER_USE_AGP | DRIVER_REQUIRE_AGP | DRIVER_USE_MTRR | 46 + DRIVER_USE_AGP | DRIVER_REQUIRE_AGP | /* DRIVER_USE_MTRR |*/ 44 47 DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED, 45 48 .load = i915_driver_load, 46 49 .lastclose = i915_driver_lastclose,