projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3b4346
)
dma-buf: heaps: Remove redundant heap identifier from system heap name
author
Andrew F. Davis
<afd@ti.com>
Mon, 16 Dec 2019 13:34:05 +0000
(08:34 -0500)
committer
Sumit Semwal
<sumit.semwal@linaro.org>
Tue, 17 Dec 2019 16:07:40 +0000
(21:37 +0530)
The heaps are already in a directory of heaps, adding _heap to a heap
name is redundant. This patch is only a name change, no logic is changed.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Acked-by: John Stultz <john.stultz@linaro.org>
Signed-off-by: Sumit Semwal <sumit.semwal@linaro.org>
Link:
https://patchwork.freedesktop.org/patch/msgid/20191216133405.1001-3-afd@ti.com
drivers/dma-buf/heaps/system_heap.c
patch
|
blob
|
history
diff --git
a/drivers/dma-buf/heaps/system_heap.c
b/drivers/dma-buf/heaps/system_heap.c
index 1aa01e98c5958b8c759aab5cbdd5cf142b484015..0bf688e3c023aef6e79680b43b17925caecb84d2 100644
(file)
--- a/
drivers/dma-buf/heaps/system_heap.c
+++ b/
drivers/dma-buf/heaps/system_heap.c
@@
-109,7
+109,7
@@
static int system_heap_create(void)
struct dma_heap_export_info exp_info;
int ret = 0;
- exp_info.name = "system
_heap
";
+ exp_info.name = "system";
exp_info.ops = &system_heap_ops;
exp_info.priv = NULL;