|
From: <sv...@va...> - 2015-03-05 11:22:49
|
Author: sewardj
Date: Thu Mar 5 11:22:41 2015
New Revision: 14978
Log:
POST(sys_ioctl): identify kernel variant "Qualcomm Adreno 3xx" correctly.
Modified:
trunk/coregrind/m_syswrap/syswrap-linux.c
Modified: trunk/coregrind/m_syswrap/syswrap-linux.c
==============================================================================
--- trunk/coregrind/m_syswrap/syswrap-linux.c (original)
+++ trunk/coregrind/m_syswrap/syswrap-linux.c Thu Mar 5 11:22:41 2015
@@ -8345,7 +8345,7 @@
/* 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
|