tdk_linuxdriver: fix typo check [1/1]
authorrui guo <rui.guo@amlogic.com>
Thu, 4 Aug 2022 06:08:23 +0000 (14:08 +0800)
committerBruno Martins <bgcngm@gmail.com>
Sat, 20 Jul 2024 21:22:00 +0000 (22:22 +0100)
PD#SWPL-89635

Problem:
typo check

Solution:
Correct word

Verify:
Android R

Signed-off-by: rui guo <rui.guo@amlogic.com>
Change-Id: I349959d2b42bf6cf260bc4facc9a6f3b101be245

optee/optee_smc.h
optee/supp.c
tee_core.c

index 47e6db8aa272f69467f91e1d74cb2cd775e4b8d0..7eb6d5756412bf6053ee1bad08cefaabe1ac8774 100644 (file)
@@ -131,7 +131,7 @@ struct optee_smc_calls_revision_result {
  *                                     optee_msg_arg.
  * OPTEE_SMC_RETURN_ETHREAD_LIMIT      Number of Trusted OS threads exceeded,
  *                                     try again later.
- * OPTEE_SMC_RETURN_EBADADDR           Bad physicial pointer to struct
+ * OPTEE_SMC_RETURN_EBADADDR           Bad physical pointer to struct
  *                                     optee_msg_arg.
  * OPTEE_SMC_RETURN_EBADCMD            Bad/unknown cmd in struct optee_msg_arg
  * OPTEE_SMC_RETURN_IS_RPC()           Call suspended by RPC call to normal
index de1b5f9f02f68948b0b9a7ca3ed4475223f1acc2..50d10fb29b216cd0c6e8831f9b7b4bc5611322b5 100644 (file)
@@ -176,7 +176,7 @@ static struct optee_supp_req  *supp_pop_entry(struct optee_supp *supp,
 
        if (supp->req_id != -1) {
                /*
-                * Supplicant should not mix synchronous and asnynchronous
+                * Supplicant should not mix synchronous and asynchronous
                 * requests.
                 */
                return ERR_PTR(-EINVAL);
@@ -286,7 +286,7 @@ int optee_supp_recv(struct tee_context *ctx, u32 *func, u32 *num_params,
 
        if (num_meta) {
                /*
-                * tee-supplicant support meta parameters -> requsts can be
+                * tee-supplicant support meta parameters -> requests can be
                 * processed asynchronously.
                 */
                param->attr = TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_INOUT |
index 002bbc4cba1326fb628e24b17ca34682ac8d288a..4c82ebc73c6a744021be758c65a78a8e74a7b1ee 100644 (file)
@@ -223,7 +223,7 @@ static int params_from_user(struct tee_context *ctx, struct tee_param *params,
                         * object (and increase the ref count) from an
                         * identifier we return an error. All pointers that
                         * has been added in params have an increased ref
-                        * count. It's the callers responibility to do
+                        * count. It's the callers responsibility to do
                         * tee_shm_put() on all resolved pointers.
                         */
                        shm = tee_shm_get_from_id(ctx, ip.c);