aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-09-30 16:10:53 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-10-01 04:52:57 -0400
commit5c323b2a78fade2df08a51497fc943a6fd1b868b (patch)
tree483f5f83730b9f38054ce9e027dc723918abcaeb
parent11c9b6c628c646894e6ef53f92cfd33a814ee553 (diff)
drm/i915: spelling fixes for frontbuffer tracking kerneldoc
Oh well. v2: Fix one more spelling fail Paulo spotted. Reviewed-by: Paulo Zanoni <paulo.r.zanoni@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--drivers/gpu/drm/i915/intel_drv.h2
-rw-r--r--drivers/gpu/drm/i915/intel_frontbuffer.c13
2 files changed, 7 insertions, 8 deletions
diff --git a/drivers/gpu/drm/i915/intel_drv.h b/drivers/gpu/drm/i915/intel_drv.h
index 072e69f4080e..f14f456e08f9 100644
--- a/drivers/gpu/drm/i915/intel_drv.h
+++ b/drivers/gpu/drm/i915/intel_drv.h
@@ -819,7 +819,7 @@ void intel_frontbuffer_flip_complete(struct drm_device *dev,
819void intel_frontbuffer_flush(struct drm_device *dev, 819void intel_frontbuffer_flush(struct drm_device *dev,
820 unsigned frontbuffer_bits); 820 unsigned frontbuffer_bits);
821/** 821/**
822 * intel_frontbuffer_flip - prepare frontbuffer flip 822 * intel_frontbuffer_flip - synchronous frontbuffer flip
823 * @dev: DRM device 823 * @dev: DRM device
824 * @frontbuffer_bits: frontbuffer plane tracking bits 824 * @frontbuffer_bits: frontbuffer plane tracking bits
825 * 825 *
diff --git a/drivers/gpu/drm/i915/intel_frontbuffer.c b/drivers/gpu/drm/i915/intel_frontbuffer.c
index c5a312d218f7..58cf2e6b78f4 100644
--- a/drivers/gpu/drm/i915/intel_frontbuffer.c
+++ b/drivers/gpu/drm/i915/intel_frontbuffer.c
@@ -28,7 +28,7 @@
28 * DOC: frontbuffer tracking 28 * DOC: frontbuffer tracking
29 * 29 *
30 * Many features require us to track changes to the currently active 30 * Many features require us to track changes to the currently active
31 * frontbuffer, especially rendering targetted at the frontbuffer. 31 * frontbuffer, especially rendering targeted at the frontbuffer.
32 * 32 *
33 * To be able to do so GEM tracks frontbuffers using a bitmask for all possible 33 * To be able to do so GEM tracks frontbuffers using a bitmask for all possible
34 * frontbuffer slots through i915_gem_track_fb(). The function in this file are 34 * frontbuffer slots through i915_gem_track_fb(). The function in this file are
@@ -55,7 +55,7 @@
55 * cancelled as soon as busyness is detected. 55 * cancelled as soon as busyness is detected.
56 * 56 *
57 * Note that there's also an older frontbuffer activity tracking scheme which 57 * Note that there's also an older frontbuffer activity tracking scheme which
58 * just trackings general activity. This is done by the various mark_busy and 58 * just tracks general activity. This is done by the various mark_busy and
59 * mark_idle functions. For display power management features using these 59 * mark_idle functions. For display power management features using these
60 * functions is deprecated and should be avoided. 60 * functions is deprecated and should be avoided.
61 */ 61 */
@@ -166,7 +166,7 @@ void intel_fb_obj_invalidate(struct drm_i915_gem_object *obj,
166 * 166 *
167 * This function gets called every time rendering on the given planes has 167 * This function gets called every time rendering on the given planes has
168 * completed and frontbuffer caching can be started again. Flushes will get 168 * completed and frontbuffer caching can be started again. Flushes will get
169 * delayed if they're blocked by some oustanding asynchronous rendering. 169 * delayed if they're blocked by some outstanding asynchronous rendering.
170 * 170 *
171 * Can be called without any locks held. 171 * Can be called without any locks held.
172 */ 172 */
@@ -231,7 +231,7 @@ void intel_fb_obj_flush(struct drm_i915_gem_object *obj,
231} 231}
232 232
233/** 233/**
234 * intel_frontbuffer_flip_prepare - prepare asnychronous frontbuffer flip 234 * intel_frontbuffer_flip_prepare - prepare asynchronous frontbuffer flip
235 * @dev: DRM device 235 * @dev: DRM device
236 * @frontbuffer_bits: frontbuffer plane tracking bits 236 * @frontbuffer_bits: frontbuffer plane tracking bits
237 * 237 *
@@ -255,12 +255,12 @@ void intel_frontbuffer_flip_prepare(struct drm_device *dev,
255} 255}
256 256
257/** 257/**
258 * intel_frontbuffer_flip_complete - complete asynchronous frontbuffer flush 258 * intel_frontbuffer_flip_complete - complete asynchronous frontbuffer flip
259 * @dev: DRM device 259 * @dev: DRM device
260 * @frontbuffer_bits: frontbuffer plane tracking bits 260 * @frontbuffer_bits: frontbuffer plane tracking bits
261 * 261 *
262 * This function gets called after the flip has been latched and will complete 262 * This function gets called after the flip has been latched and will complete
263 * on the next vblank. It will execute the fush if it hasn't been cancalled yet. 263 * on the next vblank. It will execute the flush if it hasn't been cancelled yet.
264 * 264 *
265 * Can be called without any locks held. 265 * Can be called without any locks held.
266 */ 266 */
@@ -277,4 +277,3 @@ void intel_frontbuffer_flip_complete(struct drm_device *dev,
277 277
278 intel_frontbuffer_flush(dev, frontbuffer_bits); 278 intel_frontbuffer_flush(dev, frontbuffer_bits);
279} 279}
280