Ejemplo n.º 1
0
void g_module_unload(GModule *module)
{
	(void)module;

	xconnman_quit();

	/* Remove triggers/filters from datapipes */
	remove_output_trigger_from_datapipe(&master_radio_pipe,
					    master_radio_trigger);

	return;
}
Ejemplo n.º 2
0
/** Exit function for the radio states module
 *
 * @param module (Unused)
 */
G_MODULE_EXPORT void
g_module_unload(GModule *module)
{
	(void)module;

	/* Remove dbus handlers */
	mrs_dbus_quit();

	xconnman_quit();

	/* Remove triggers/filters from datapipes */
	mrs_datapipe_quit();

	mrs_cancel_radio_state_sync();

	return;
}