diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-04-17 17:28:50 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-04-17 17:28:50 -0400 |
| commit | 13bd8e4673d527a9e48f41956b11d391e7c2cfe0 (patch) | |
| tree | 2a3ce7c025f7d5b771fcc9a24b88a49317b2c7bc /drivers/gpu/drm/i915/i915_irq.c | |
| parent | d6f533c8c7a4d83ed1c075f919a68031b9c67185 (diff) | |
| parent | bfac4d6725baacbfc085c38e231b8582a1b8f62b (diff) | |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/anholt/drm-intel
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/anholt/drm-intel:
drm/i915: Ignore LVDS EDID when it is unavailabe or invalid
drm/i915: Add no_lvds entry for the Clientron U800
drm/i915: Rename many remaining uses of "output" to encoder or connector.
drm/i915: Rename intel_output to intel_encoder.
agp/intel: intel_845_driver is an agp driver!
drm/i915: introduce to_intel_bo helper
drm/i915: Disable FBC on 915GM and 945GM.
Diffstat (limited to 'drivers/gpu/drm/i915/i915_irq.c')
| -rw-r--r-- | drivers/gpu/drm/i915/i915_irq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c index 49c458bc6502..6421481d6222 100644 --- a/drivers/gpu/drm/i915/i915_irq.c +++ b/drivers/gpu/drm/i915/i915_irq.c | |||
| @@ -260,10 +260,10 @@ static void i915_hotplug_work_func(struct work_struct *work) | |||
| 260 | 260 | ||
| 261 | if (mode_config->num_connector) { | 261 | if (mode_config->num_connector) { |
| 262 | list_for_each_entry(connector, &mode_config->connector_list, head) { | 262 | list_for_each_entry(connector, &mode_config->connector_list, head) { |
| 263 | struct intel_output *intel_output = to_intel_output(connector); | 263 | struct intel_encoder *intel_encoder = to_intel_encoder(connector); |
| 264 | 264 | ||
| 265 | if (intel_output->hot_plug) | 265 | if (intel_encoder->hot_plug) |
| 266 | (*intel_output->hot_plug) (intel_output); | 266 | (*intel_encoder->hot_plug) (intel_encoder); |
| 267 | } | 267 | } |
| 268 | } | 268 | } |
| 269 | /* Just fire off a uevent and let userspace tell us what to do */ | 269 | /* Just fire off a uevent and let userspace tell us what to do */ |
| @@ -444,7 +444,7 @@ i915_error_object_create(struct drm_device *dev, | |||
| 444 | if (src == NULL) | 444 | if (src == NULL) |
| 445 | return NULL; | 445 | return NULL; |
| 446 | 446 | ||
| 447 | src_priv = src->driver_private; | 447 | src_priv = to_intel_bo(src); |
| 448 | if (src_priv->pages == NULL) | 448 | if (src_priv->pages == NULL) |
| 449 | return NULL; | 449 | return NULL; |
| 450 | 450 | ||
