forked from luck/tmp_suning_uos_patched
702143d1de
[ Upstream commit 67bc809752796acb2641ca343cad5b45eef31d7c ]
Storing a bogus i2c_client structure on the stack adds overhead and
causes a compile-time warning:
drivers/tee/optee/rpc.c:493:6: error: stack frame size of 1056 bytes in function 'optee_handle_rpc' [-Werror,-Wframe-larger-than=]
void optee_handle_rpc(struct tee_context *ctx, struct optee_rpc_param *param,
Change the implementation of handle_rpc_func_cmd_i2c_transfer() to
open-code the i2c_transfer() call, which makes it easier to read
and avoids the warning.
Fixes:
|
||
---|---|---|
.. | ||
call.c | ||
core.c | ||
device.c | ||
Kconfig | ||
Makefile | ||
optee_msg.h | ||
optee_private.h | ||
optee_smc.h | ||
rpc.c | ||
shm_pool.c | ||
shm_pool.h | ||
supp.c |