diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2010-05-10 11:59:37 +0200 | 
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2010-05-10 14:20:42 +0200 | 
| commit | dbb6be6d5e974c42bbecd183effaa0df69e1dd8b (patch) | |
| tree | 5735cb47e70853d057a9881dd0ce44b83e88fa63 /drivers/gpu/drm/i915/i915_drv.c | |
| parent | 6a867a395558a7f882d041783e4cdea6744ca2bf (diff) | |
| parent | b57f95a38233a2e73b679bea4a5453a1cc2a1cc9 (diff) | |
| download | olio-linux-3.10-dbb6be6d5e974c42bbecd183effaa0df69e1dd8b.tar.xz olio-linux-3.10-dbb6be6d5e974c42bbecd183effaa0df69e1dd8b.zip  | |
Merge branch 'linus' into timers/core
Reason: Further posix_cpu_timer patches depend on mainline changes
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.c')
| -rw-r--r-- | drivers/gpu/drm/i915/i915_drv.c | 15 | 
1 files changed, 8 insertions, 7 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c index 1b2e95455c0..cc03537bb88 100644 --- a/drivers/gpu/drm/i915/i915_drv.c +++ b/drivers/gpu/drm/i915/i915_drv.c @@ -69,7 +69,8 @@ const static struct intel_device_info intel_845g_info = {  };  const static struct intel_device_info intel_i85x_info = { -	.is_i8xx = 1, .is_mobile = 1, .cursor_needs_physical = 1, +	.is_i8xx = 1, .is_i85x = 1, .is_mobile = 1, +	.cursor_needs_physical = 1,  };  const static struct intel_device_info intel_i865g_info = { @@ -80,14 +81,14 @@ const static struct intel_device_info intel_i915g_info = {  	.is_i915g = 1, .is_i9xx = 1, .cursor_needs_physical = 1,  };  const static struct intel_device_info intel_i915gm_info = { -	.is_i9xx = 1,  .is_mobile = 1, .has_fbc = 1, +	.is_i9xx = 1,  .is_mobile = 1,  	.cursor_needs_physical = 1,  };  const static struct intel_device_info intel_i945g_info = {  	.is_i9xx = 1, .has_hotplug = 1, .cursor_needs_physical = 1,  };  const static struct intel_device_info intel_i945gm_info = { -	.is_i945gm = 1, .is_i9xx = 1, .is_mobile = 1, .has_fbc = 1, +	.is_i945gm = 1, .is_i9xx = 1, .is_mobile = 1,  	.has_hotplug = 1, .cursor_needs_physical = 1,  }; @@ -139,19 +140,19 @@ const static struct intel_device_info intel_ironlake_m_info = {  const static struct intel_device_info intel_sandybridge_d_info = {  	.is_i965g = 1, .is_i9xx = 1, .need_gfx_hws = 1, -	.has_hotplug = 1, +	.has_hotplug = 1, .is_gen6 = 1,  };  const static struct intel_device_info intel_sandybridge_m_info = {  	.is_i965g = 1, .is_mobile = 1, .is_i9xx = 1, .need_gfx_hws = 1, -	.has_hotplug = 1, +	.has_hotplug = 1, .is_gen6 = 1,  };  const static struct pci_device_id pciidlist[] = {  	INTEL_VGA_DEVICE(0x3577, &intel_i830_info),  	INTEL_VGA_DEVICE(0x2562, &intel_845g_info),  	INTEL_VGA_DEVICE(0x3582, &intel_i85x_info), -	INTEL_VGA_DEVICE(0x35e8, &intel_i85x_info), +	INTEL_VGA_DEVICE(0x358e, &intel_i85x_info),  	INTEL_VGA_DEVICE(0x2572, &intel_i865g_info),  	INTEL_VGA_DEVICE(0x2582, &intel_i915g_info),  	INTEL_VGA_DEVICE(0x258a, &intel_i915g_info), @@ -361,7 +362,7 @@ int i965_reset(struct drm_device *dev, u8 flags)  	    !dev_priv->mm.suspended) {  		drm_i915_ring_buffer_t *ring = &dev_priv->ring;  		struct drm_gem_object *obj = ring->ring_obj; -		struct drm_i915_gem_object *obj_priv = obj->driver_private; +		struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);  		dev_priv->mm.suspended = 0;  		/* Stop the ring if it's running. */  |