예제 #1
0
파일: radiostates.c 프로젝트: Vesuri/mce
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;
}
예제 #2
0
파일: radiostates.c 프로젝트: spiiroin/mce
/** 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;
}