projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1bb88ed
)
drm/i915: Fix cursor physical address choice to match the 2D driver.
author
Jesse Barnes
<
[email protected]
>
Wed, 21 Jan 2009 03:10:54 +0000
(19:10 -0800)
committer
Dave Airlie
<
[email protected]
>
Thu, 22 Jan 2009 12:29:03 +0000
(22:29 +1000)
Signed-off-by: Jesse Barnes <
[email protected]
>
Signed-off-by: Eric Anholt <
[email protected]
>
drivers/gpu/drm/i915/i915_dma.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/i915_dma.c
b/drivers/gpu/drm/i915/i915_dma.c
index 57e8eb636a77a6ce79d2437f139bd665ee1f190a..ee64b7301f6722300bc4362ac5c84010e9355562 100644
(file)
--- a/
drivers/gpu/drm/i915/i915_dma.c
+++ b/
drivers/gpu/drm/i915/i915_dma.c
@@
-944,11
+944,14
@@
static int i915_load_modeset_init(struct drm_device *dev)
dev->mode_config.fb_base = drm_get_resource_start(dev, fb_bar) &
0xff000000;
- if (IS_MOBILE(dev) ||
(IS_I9XX(dev) && !IS_I965G(dev) && !IS_G33(dev)
))
+ if (IS_MOBILE(dev) ||
IS_I9XX(dev
))
dev_priv->cursor_needs_physical = true;
else
dev_priv->cursor_needs_physical = false;
+ if (IS_I965G(dev) || IS_G33(dev))
+ dev_priv->cursor_needs_physical = false;
+
ret = i915_probe_agp(dev, &agp_size, &prealloc_size);
if (ret)
goto kfree_devname;