projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
490d3d1
)
dma-buf/sync_file: fix build warning with context format type
author
Gustavo Padovan
<gustavo.padovan@collabora.co.uk>
Fri, 3 Jun 2016 15:46:31 +0000
(12:46 -0300)
committer
Daniel Vetter
<daniel.vetter@ffwll.ch>
Fri, 3 Jun 2016 18:43:43 +0000
(20:43 +0200)
Christian König changed fence context to a u64 type, so we need to
update all users accordingly.
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Acked-by: Sumit Semwal <sumit.semwal@linaro.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link:
http://patchwork.freedesktop.org/patch/msgid/1464968791-4564-1-git-send-email-gustavo@padovan.org
drivers/dma-buf/sync_file.c
patch
|
blob
|
history
diff --git
a/drivers/dma-buf/sync_file.c
b/drivers/dma-buf/sync_file.c
index f08cf2d8309eaf233e4ba31280c9609c2d34b6e5..9aaa608dfe0111515e01b59227a7ca87d72ab61b 100644
(file)
--- a/
drivers/dma-buf/sync_file.c
+++ b/
drivers/dma-buf/sync_file.c
@@
-82,7
+82,7
@@
struct sync_file *sync_file_create(struct fence *fence)
sync_file->num_fences = 1;
atomic_set(&sync_file->status, 1);
- snprintf(sync_file->name, sizeof(sync_file->name), "%s-%s%
d
-%d",
+ snprintf(sync_file->name, sizeof(sync_file->name), "%s-%s%
llu
-%d",
fence->ops->get_driver_name(fence),
fence->ops->get_timeline_name(fence), fence->context,
fence->seqno);