bcm27xx: update to latest patches from RPi foundation
[openwrt/openwrt.git] / target / linux / bcm27xx / patches-5.4 / 950-0736-dma-buf-heaps-Remove-redundant-heap-identifier-from-.patch
1 From 0b5efcbb99c7b36f84cf8f8f4b582d88ccb9cc35 Mon Sep 17 00:00:00 2001
2 From: "Andrew F. Davis" <afd@ti.com>
3 Date: Mon, 16 Dec 2019 08:34:05 -0500
4 Subject: [PATCH] dma-buf: heaps: Remove redundant heap identifier from
5 system heap name
6
7 The heaps are already in a directory of heaps, adding _heap to a heap
8 name is redundant. This patch is only a name change, no logic is changed.
9
10 Signed-off-by: Andrew F. Davis <afd@ti.com>
11 Acked-by: John Stultz <john.stultz@linaro.org>
12 Signed-off-by: Sumit Semwal <sumit.semwal@linaro.org>
13 Link: https://patchwork.freedesktop.org/patch/msgid/20191216133405.1001-3-afd@ti.com
14 ---
15 drivers/dma-buf/heaps/system_heap.c | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 --- a/drivers/dma-buf/heaps/system_heap.c
19 +++ b/drivers/dma-buf/heaps/system_heap.c
20 @@ -109,7 +109,7 @@ static int system_heap_create(void)
21 struct dma_heap_export_info exp_info;
22 int ret = 0;
23
24 - exp_info.name = "system_heap";
25 + exp_info.name = "system";
26 exp_info.ops = &system_heap_ops;
27 exp_info.priv = NULL;
28