···3434 uint8_t func;3535};36363737+#ifdef CONFIG_IMX_SCU3738/*3839 * This is an function to send an RPC message over an IPC channel.3940 * It is called by client-side SCFW API function shims.···5655 * @return Returns an error code (0 = success, failed if < 0)5756 */5857int imx_scu_get_handle(struct imx_sc_ipc **ipc);5858+#else5959+static inline int imx_scu_call_rpc(struct imx_sc_ipc *ipc, void *msg,6060+ bool have_resp)6161+{6262+ return -ENOTSUPP;6363+}6464+6565+static inline int imx_scu_get_handle(struct imx_sc_ipc **ipc)6666+{6767+ return -ENOTSUPP;6868+}6969+#endif5970#endif /* _SC_IPC_H */