aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma-buf
diff options
context:
space:
mode:
authorAndrew F. Davis <afd@ti.com>2019-12-16 08:34:05 -0500
committerSumit Semwal <sumit.semwal@linaro.org>2019-12-17 21:37:40 +0530
commit263e38f82cbb35bf59727a2375099482dc3331da (patch)
tree4024b8231cc6e686d4dee1d83961f3b5f75a7c2f /drivers/dma-buf
parentdma-buf: heaps: Use _IOCTL_ for userspace IOCTL identifier (diff)
downloadlinux-dev-263e38f82cbb35bf59727a2375099482dc3331da.tar.xz
linux-dev-263e38f82cbb35bf59727a2375099482dc3331da.zip
dma-buf: heaps: Remove redundant heap identifier from system heap name
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
Diffstat (limited to 'drivers/dma-buf')
-rw-r--r--drivers/dma-buf/heaps/system_heap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma-buf/heaps/system_heap.c b/drivers/dma-buf/heaps/system_heap.c
index 1aa01e98c595..0bf688e3c023 100644
--- 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;