Home
last modified time | relevance | path

Searched hist:"39 b43b782a6201b5e489b952d86ee4a8bd4cc0b2" (Results 1 – 2 of 2) sorted by relevance

/optee_os/ta/pkcs11/src/
H A Dpkcs11_token.c39b43b782a6201b5e489b952d86ee4a8bd4cc0b2 Mon May 04 17:08:45 UTC 2020 Jens Wiklander <jens.wiklander@linaro.org> ta: pkcs11: replace complicated params pointer calculation

Replaces params pointer calculations on the form
ctrl = &params[0];
out = &params[2];
with a plain
ctrl = params;
out = params + 2;
in all entry function still using this form.

Reviewed-by: Rouven Czerwinski <r.czerwinski@pengutronix.de>
Reviewed-by: Jerome Forissier <jerome@forissier.org>
Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
H A Dentry.c39b43b782a6201b5e489b952d86ee4a8bd4cc0b2 Mon May 04 17:08:45 UTC 2020 Jens Wiklander <jens.wiklander@linaro.org> ta: pkcs11: replace complicated params pointer calculation

Replaces params pointer calculations on the form
ctrl = &params[0];
out = &params[2];
with a plain
ctrl = params;
out = params + 2;
in all entry function still using this form.

Reviewed-by: Rouven Czerwinski <r.czerwinski@pengutronix.de>
Reviewed-by: Jerome Forissier <jerome@forissier.org>
Reviewed-by: Etienne Carriere <etienne.carriere@linaro.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>