aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorMichael Witten <mfwitten@gmail.com>2011-08-25 15:19:18 -0400
committerMichael Witten <mfwitten@gmail.com>2011-08-29 15:59:52 -0400
commitae63d793a43888eeb1c16422252d987aa37ab96c (patch)
tree459e0496317704b0f49c861cd933c6af931d2be8 /Documentation
parent1c86de2216f678bfb6e2472af6e5c25b0df8d91f (diff)
DocBook/drm: Insert `()' after function name
Signed-off-by: Michael Witten <mfwitten@gmail.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/DocBook/drm.tmpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/DocBook/drm.tmpl b/Documentation/DocBook/drm.tmpl
index 6b2a80369f6b..6977cd91779c 100644
--- a/Documentation/DocBook/drm.tmpl
+++ b/Documentation/DocBook/drm.tmpl
@@ -433,15 +433,15 @@
433 </para> 433 </para>
434 <para> 434 <para>
435 Once your global TTM accounting structure is set up and initialized 435 Once your global TTM accounting structure is set up and initialized
436 by calling ttm_global_item_ref on it, 436 by calling ttm_global_item_ref() on it,
437 you need to create a buffer object TTM to 437 you need to create a buffer object TTM to
438 provide a pool for buffer object allocation by clients and the 438 provide a pool for buffer object allocation by clients and the
439 kernel itself. The type of this object should be TTM_GLOBAL_TTM_BO, 439 kernel itself. The type of this object should be TTM_GLOBAL_TTM_BO,
440 and its size should be sizeof(struct ttm_bo_global). Again, 440 and its size should be sizeof(struct ttm_bo_global). Again,
441 driver specific init and release functions may be provided, 441 driver specific init and release functions may be provided,
442 likely eventually calling ttm_bo_global_init and 442 likely eventually calling ttm_bo_global_init() and
443 ttm_bo_global_release, respectively. Also, like the previous 443 ttm_bo_global_release(), respectively. Also, like the previous
444 object, ttm_global_item_ref is used to create an initial reference 444 object, ttm_global_item_ref() is used to create an initial reference
445 count for the TTM, which will call your initialization function. 445 count for the TTM, which will call your initialization function.
446 </para> 446 </para>
447 </sect3> 447 </sect3>