Explorar el Código

Merge "dsp: lsm: don't print physical address of invalid lsm client pointer"

qctecmdr hace 5 años
padre
commit
e59a8a66f5
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      dsp/q6lsm.c

+ 1 - 2
dsp/q6lsm.c

@@ -104,8 +104,7 @@ static int q6lsm_get_session_id_from_lsm_client(struct lsm_client *client)
 		if (lsm_session[n] == client)
 		if (lsm_session[n] == client)
 			return n;
 			return n;
 	}
 	}
-	pr_err("%s: cannot find matching lsm client. client = %pa\n",
-		__func__, client);
+	pr_err("%s: cannot find matching lsm client.\n", __func__);
 	return LSM_INVALID_SESSION_ID;
 	return LSM_INVALID_SESSION_ID;
 }
 }