[PATCH -next] dma-buf/sw_sync: fix non static symbol warning

Wei Yongjun weiyj.lk at gmail.com
Sat Oct 29 16:29:58 UTC 2016


From: Wei Yongjun <weiyongjun1 at huawei.com>

Fixes the following sparse warning:

drivers/dma-buf/sw_sync.c:87:22: warning:
 symbol 'sync_timeline_create' was not declared. Should it be static?

Signed-off-by: Wei Yongjun <weiyongjun1 at huawei.com>
---
 drivers/dma-buf/sw_sync.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dma-buf/sw_sync.c b/drivers/dma-buf/sw_sync.c
index 82e0ca4..7aa4d7b 100644
--- a/drivers/dma-buf/sw_sync.c
+++ b/drivers/dma-buf/sw_sync.c
@@ -84,7 +84,7 @@ static inline struct sync_pt *dma_fence_to_sync_pt(struct dma_fence *fence)
  * Creates a new sync_timeline. Returns the sync_timeline object or NULL in
  * case of error.
  */
-struct sync_timeline *sync_timeline_create(const char *name)
+static struct sync_timeline *sync_timeline_create(const char *name)
 {
 	struct sync_timeline *obj;



More information about the dri-devel mailing list