#ifdef CONFIG_IMX_SCU /* * This is an function to send an RPC message over an IPC channel. * It is called by client-side SCFW API function shims. * * @param[in] ipc IPC handle * @param[in,out] msg handle to a message * @param[in] have_resp response flag * * If have_resp is true then this function waits for a response * and returns the result in msg.
*/ int imx_scu_call_rpc(struct imx_sc_ipc *ipc, void *msg, bool have_resp);
/* * This function gets the default ipc handle used by SCU * * @param[out] ipc sc ipc handle * * @return Returns an error code (0 = success, failed if < 0)
*/ int imx_scu_get_handle(struct imx_sc_ipc **ipc); #else staticinlineint imx_scu_call_rpc(struct imx_sc_ipc *ipc, void *msg, bool have_resp)
{ return -ENOTSUPP;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.