[PATCH libdrm 11/17] tests/amdgpu: reference the correct variable for memcpy
Emil Velikov
emil.l.velikov at gmail.com
Mon Aug 24 09:34:14 PDT 2015
Cc: Alex Deucher <alexander.deucher at amd.com>
Cc: Leo Liu <leo.liu at amd.com>
Signed-off-by: Emil Velikov <emil.l.velikov at gmail.com>
---
tests/amdgpu/cs_tests.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/amdgpu/cs_tests.c b/tests/amdgpu/cs_tests.c
index 416f36b..dfbf5af 100644
--- a/tests/amdgpu/cs_tests.c
+++ b/tests/amdgpu/cs_tests.c
@@ -266,7 +266,7 @@ static void amdgpu_cs_uvd_decode(void)
r = amdgpu_bo_cpu_map(buf_handle, (void **)&ptr);
CU_ASSERT_EQUAL(r, 0);
- memcpy(ptr, uvd_decode_msg, sizeof(uvd_create_msg));
+ memcpy(ptr, uvd_decode_msg, sizeof(uvd_decode_msg));
if (family_id >= AMDGPU_FAMILY_VI)
ptr[0x10] = 7;
@@ -362,7 +362,7 @@ static void amdgpu_cs_uvd_destroy(void)
r = amdgpu_bo_cpu_map(buf_handle, &msg);
CU_ASSERT_EQUAL(r, 0);
- memcpy(msg, uvd_destroy_msg, sizeof(uvd_create_msg));
+ memcpy(msg, uvd_destroy_msg, sizeof(uvd_destroy_msg));
if (family_id >= AMDGPU_FAMILY_VI)
((uint8_t*)msg)[0x10] = 7;
--
2.5.0
More information about the dri-devel
mailing list