Lines Matching defs:init
222 pr_err("missing init for protocol 0x%x\n", proto->id);
1391 * scmi_set_protocol_priv - Set protocol specific data at init time
1409 * scmi_get_protocol_priv - Set protocol specific data at init time
1821 /* proto->init is assured NON NULL by scmi_protocol_register */
2940 * .init/.exit code if provided.
2942 * @init: A flag to distinguish between init and exit.
2944 * Note that, if provided, we invoke .init/.exit functions for all the
2949 static inline int __scmi_transports_setup(bool init)
2957 if ((init && !tdesc->transport_init) ||
2958 (!init && !tdesc->transport_exit))
2961 if (init)
3007 /* Initialize any compiled-in transport which provided an init/exit */