summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/libimxdmabuffer/files/0001-g2d-Fix-typo.patch
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2022-05-11 07:39:55 -0300
committerGitHub <noreply@github.com>2022-05-11 07:39:55 -0300
commit3cb29cff92568ea835ef070490f185349d712837 (patch)
tree5c5121925065b5a813a15bd5dcb47989e1a6f7ea /recipes-bsp/libimxdmabuffer/files/0001-g2d-Fix-typo.patch
parent3dbca0ef2ae1ea3862e540c59ad77adbcb419d57 (diff)
parentc1cbe5c6f38bd8a5c45ea19dc757644f1adaf7dd (diff)
downloadmeta-freescale-3cb29cff92568ea835ef070490f185349d712837.tar.gz
Merge pull request #1076 from dv1/dunfell
libimxdmabuffer, libimxvpuapi2, gstreamer1.0-plugins-imx upgrades and backports for dunfell
Diffstat (limited to 'recipes-bsp/libimxdmabuffer/files/0001-g2d-Fix-typo.patch')
-rw-r--r--recipes-bsp/libimxdmabuffer/files/0001-g2d-Fix-typo.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes-bsp/libimxdmabuffer/files/0001-g2d-Fix-typo.patch b/recipes-bsp/libimxdmabuffer/files/0001-g2d-Fix-typo.patch
new file mode 100644
index 00000000..490d3a2f
--- /dev/null
+++ b/recipes-bsp/libimxdmabuffer/files/0001-g2d-Fix-typo.patch
@@ -0,0 +1,28 @@
1From 41825b11289be251fed64470893d18b89b0dd38b Mon Sep 17 00:00:00 2001
2From: Carlos Rafael Giani <crg7475@mailbox.org>
3Date: Sun, 8 May 2022 16:25:44 +0200
4Subject: [PATCH] g2d: Fix typo
5
6Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
7
8Upstream-Status: Backport [41825b11289be251fed64470893d18b89b0dd38b]
9---
10 imxdmabuffer/imxdmabuffer_g2d_allocator.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/imxdmabuffer/imxdmabuffer_g2d_allocator.c b/imxdmabuffer/imxdmabuffer_g2d_allocator.c
14index f10a909..497dcea 100644
15--- a/imxdmabuffer/imxdmabuffer_g2d_allocator.c
16+++ b/imxdmabuffer/imxdmabuffer_g2d_allocator.c
17@@ -139,7 +139,7 @@ static uint8_t* imx_dma_buffer_g2d_allocator_map(ImxDmaBufferAllocator *allocato
18 * (Other allocators perform more steps than this.) */
19 if (imx_g2d_buffer->mapping_refcount > 0)
20 {
21- assert((imx_dwl_buffer->map_flags & flags & IMX_DMA_BUFFER_MAPPING_READWRITE_FLAG_MASK) == (flags & IMX_DMA_BUFFER_MAPPING_READWRITE_FLAG_MASK));
22+ assert((imx_g2d_buffer->map_flags & flags & IMX_DMA_BUFFER_MAPPING_READWRITE_FLAG_MASK) == (flags & IMX_DMA_BUFFER_MAPPING_READWRITE_FLAG_MASK));
23 imx_g2d_buffer->mapping_refcount++;
24 }
25 else
26--
272.32.0
28