Unverified Commit 6a035689 authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

Merge tag 'optee-ffa-fix-for-v5.16' of...

Merge tag 'optee-ffa-fix-for-v5.16' of git://git.linaro.org/people/jens.wiklander/linux-tee into arm/drivers

Fix spell errors in OP-TEE FF-A driver log messages

* tag 'optee-ffa-fix-for-v5.16' of git://git.linaro.org/people/jens.wiklander/linux-tee:
  optee: Fix spelling mistake "reclain" -> "reclaim"

Link: https://lore.kernel.org/r/20211028185142.GA2489375@jade


Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parents 7db2bc92 1b73a9e4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -333,7 +333,7 @@ static int optee_ffa_shm_unregister(struct tee_context *ctx,

	rc = ffa_ops->memory_reclaim(global_handle, 0);
	if (rc)
		pr_err("mem_reclain: 0x%llx %d", global_handle, rc);
		pr_err("mem_reclaim: 0x%llx %d", global_handle, rc);

	return rc;
}
@@ -355,7 +355,7 @@ static int optee_ffa_shm_unregister_supp(struct tee_context *ctx,
	optee_shm_rem_ffa_handle(optee, global_handle);
	rc = ffa_ops->memory_reclaim(global_handle, 0);
	if (rc)
		pr_err("mem_reclain: 0x%llx %d", global_handle, rc);
		pr_err("mem_reclaim: 0x%llx %d", global_handle, rc);

	shm->sec_world_id = 0;