diff options
author | Eric Anholt <eric@anholt.net> | 2010-01-28 19:13:29 -0500 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-02-26 16:23:20 -0500 |
commit | faa7bde6cb1227d13d011042f17bda0869c3bd1e (patch) | |
tree | 6e0df1f3ad141b02cf2eb3ca842cb38d474ab403 /drivers/gpu/drm/i915 | |
parent | b9201c14d9c22fb3b3f313f69ee4f967353ca960 (diff) |
drm/i915: Correct the Sandybridge chipset info structs.
Disables CXSR until it's done, and sets the mobile bit on mobile.
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu/drm/i915')
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c index 94e74a426ef9..2a9178bb2748 100644 --- a/drivers/gpu/drm/i915/i915_drv.c +++ b/drivers/gpu/drm/i915/i915_drv.c | |||
@@ -138,13 +138,11 @@ const static struct intel_device_info intel_ironlake_m_info = { | |||
138 | 138 | ||
139 | const static struct intel_device_info intel_sandybridge_d_info = { | 139 | const static struct intel_device_info intel_sandybridge_d_info = { |
140 | .is_i965g = 1, .is_i9xx = 1, .need_gfx_hws = 1, | 140 | .is_i965g = 1, .is_i9xx = 1, .need_gfx_hws = 1, |
141 | .has_pipe_cxsr = 1, | ||
142 | .has_hotplug = 1, | 141 | .has_hotplug = 1, |
143 | }; | 142 | }; |
144 | 143 | ||
145 | const static struct intel_device_info intel_sandybridge_m_info = { | 144 | const static struct intel_device_info intel_sandybridge_m_info = { |
146 | .is_i965g = 1, .is_i9xx = 1, .need_gfx_hws = 1, | 145 | .is_i965g = 1, .is_mobile = 1, .is_i9xx = 1, .need_gfx_hws = 1, |
147 | .has_pipe_cxsr = 1, | ||
148 | .has_hotplug = 1, | 146 | .has_hotplug = 1, |
149 | }; | 147 | }; |
150 | 148 | ||