msm: ADSPRPC: Fix verify in fastrpc_read_handler

Fix verify condition so it matches 3.10 branch

Change-Id: I4b0a3775062b6e8fd448012766184403b9b2adda
This commit is contained in:
syphyr 2019-08-04 20:53:15 +02:00 committed by L R
parent ded010f7fb
commit 48183f62ad
1 changed files with 1 additions and 1 deletions

View File

@ -1068,7 +1068,7 @@ static void fastrpc_read_handler(int cid)
if (err)
goto bail;
VERIFY(err, ((me->ctxtable[index]->ctxid == (rsp.ctx & ~1)) &&
VERIFY(err, ((me->ctxtable[index]->ctxid == (rsp.ctx)) &&
me->ctxtable[index]->magic == FASTRPC_CTX_MAGIC));
if (err)
goto bail;