From 2ef97db66064992a294e5f12712281632f3a0bba Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Thu, 5 Mar 2015 11:22:41 +0000 Subject: [PATCH] POST(sys_ioctl): identify kernel variant "Qualcomm Adreno 3xx" correctly. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14978 --- coregrind/m_syswrap/syswrap-linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/m_syswrap/syswrap-linux.c b/coregrind/m_syswrap/syswrap-linux.c index ecea23047b..e87320a3a7 100644 --- a/coregrind/m_syswrap/syswrap-linux.c +++ b/coregrind/m_syswrap/syswrap-linux.c @@ -8345,7 +8345,7 @@ POST(sys_ioctl) /* END undocumented ioctls for PowerVR SGX 540 (the GPU on Nexus S) */ /* BEGIN undocumented ioctls for Qualcomm Adreno 3xx */ - if (KernelVariantiS(KernelVariant_android_gpu_sgx5xx, + if (KernelVariantiS(KernelVariant_android_gpu_adreno3xx, VG_(clo_kernel_variant))) { if (ARG2 == 0xC00C0902) { POST_MEM_WRITE(ARG3, 24); // 16 is not enough -- 2.47.3