aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorRashika <rashika.kheria@gmail.com>2014-01-06 09:57:48 -0500
committerDave Airlie <airlied@redhat.com>2014-01-13 21:59:16 -0500
commita1537f33b1df41afcfb1e5df980f6d2f63b7b26d (patch)
tree2ad4d3bbd00ad95d285150c1ef9a8681c34caca8 /drivers/gpu
parent7f5ccd443e7e2a10df210b16850497b166629711 (diff)
drivers: gpu: Mark functions as static in ast_ttm.c
Mark functions ast_ttm_global_release(), ast_ttm_bo_is_ast_bo() and ast_ttm_tt_create() as static in drm/ast/ast_ttm.c because they are not used outside this file. This eliminates the following warnings in drm/ast/ast_ttm.c: drivers/gpu/drm/ast/ast_ttm.c:84:1: warning: no previous prototype for ‘ast_ttm_global_release’ [-Wmissing-prototypes] drivers/gpu/drm/ast/ast_ttm.c:105:6: warning: no previous prototype for ‘ast_ttm_bo_is_ast_bo’ [-Wmissing-prototypes] drivers/gpu/drm/ast/ast_ttm.c:211:16: warning: no previous prototype for ‘ast_ttm_tt_create’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/ast/ast_ttm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/ast/ast_ttm.c b/drivers/gpu/drm/ast/ast_ttm.c
index 32aecb34dbce..4ea9b17ac17a 100644
--- a/drivers/gpu/drm/ast/ast_ttm.c
+++ b/drivers/gpu/drm/ast/ast_ttm.c
@@ -80,7 +80,7 @@ static int ast_ttm_global_init(struct ast_private *ast)
80 return 0; 80 return 0;
81} 81}
82 82
83void 83static void
84ast_ttm_global_release(struct ast_private *ast) 84ast_ttm_global_release(struct ast_private *ast)
85{ 85{
86 if (ast->ttm.mem_global_ref.release == NULL) 86 if (ast->ttm.mem_global_ref.release == NULL)
@@ -102,7 +102,7 @@ static void ast_bo_ttm_destroy(struct ttm_buffer_object *tbo)
102 kfree(bo); 102 kfree(bo);
103} 103}
104 104
105bool ast_ttm_bo_is_ast_bo(struct ttm_buffer_object *bo) 105static bool ast_ttm_bo_is_ast_bo(struct ttm_buffer_object *bo)
106{ 106{
107 if (bo->destroy == &ast_bo_ttm_destroy) 107 if (bo->destroy == &ast_bo_ttm_destroy)
108 return true; 108 return true;
@@ -208,7 +208,7 @@ static struct ttm_backend_func ast_tt_backend_func = {
208}; 208};
209 209
210 210
211struct ttm_tt *ast_ttm_tt_create(struct ttm_bo_device *bdev, 211static struct ttm_tt *ast_ttm_tt_create(struct ttm_bo_device *bdev,
212 unsigned long size, uint32_t page_flags, 212 unsigned long size, uint32_t page_flags,
213 struct page *dummy_read_page) 213 struct page *dummy_read_page)
214{ 214{