aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/i915/i915_drv.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index 2137a33d5bb2..c2c9a93861ae 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -172,6 +172,7 @@ static const struct intel_device_info intel_i85x_info = {
172 .gen = 2, .is_i85x = 1, .is_mobile = 1, .num_pipes = 2, 172 .gen = 2, .is_i85x = 1, .is_mobile = 1, .num_pipes = 2,
173 .cursor_needs_physical = 1, 173 .cursor_needs_physical = 1,
174 .has_overlay = 1, .overlay_needs_physical = 1, 174 .has_overlay = 1, .overlay_needs_physical = 1,
175 .has_fbc = 1,
175 .ring_mask = RENDER_RING, 176 .ring_mask = RENDER_RING,
176}; 177};
177 178
@@ -191,6 +192,7 @@ static const struct intel_device_info intel_i915gm_info = {
191 .cursor_needs_physical = 1, 192 .cursor_needs_physical = 1,
192 .has_overlay = 1, .overlay_needs_physical = 1, 193 .has_overlay = 1, .overlay_needs_physical = 1,
193 .supports_tv = 1, 194 .supports_tv = 1,
195 .has_fbc = 1,
194 .ring_mask = RENDER_RING, 196 .ring_mask = RENDER_RING,
195}; 197};
196static const struct intel_device_info intel_i945g_info = { 198static const struct intel_device_info intel_i945g_info = {
@@ -203,6 +205,7 @@ static const struct intel_device_info intel_i945gm_info = {
203 .has_hotplug = 1, .cursor_needs_physical = 1, 205 .has_hotplug = 1, .cursor_needs_physical = 1,
204 .has_overlay = 1, .overlay_needs_physical = 1, 206 .has_overlay = 1, .overlay_needs_physical = 1,
205 .supports_tv = 1, 207 .supports_tv = 1,
208 .has_fbc = 1,
206 .ring_mask = RENDER_RING, 209 .ring_mask = RENDER_RING,
207}; 210};
208 211