Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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

authored by

Andrew F. Davis and committed by
Sumit Semwal
263e38f8 b3b43465

+1 -1
+1 -1
drivers/dma-buf/heaps/system_heap.c
··· 109 109 struct dma_heap_export_info exp_info; 110 110 int ret = 0; 111 111 112 - exp_info.name = "system_heap"; 112 + exp_info.name = "system"; 113 113 exp_info.ops = &system_heap_ops; 114 114 exp_info.priv = NULL; 115 115