void config_fini(void) { #if defined(CONFIG_UDEV) config_udev_fini(); #elif defined(CONFIG_HAL) config_hal_fini(); #elif defined(CONFIG_WSCONS) config_wscons_fini(); #endif }
void config_fini() { #if defined(CONFIG_DBUS_API) || defined(CONFIG_HAL) # ifdef CONFIG_HAL config_hal_fini(); # endif # ifdef CONFIG_DBUS_API config_dbus_fini(); # endif config_dbus_core_fini(); #endif }
void config_fini(void) { #if defined(CONFIG_UDEV) config_udev_fini(); #elif defined(CONFIG_NEED_DBUS) # ifdef CONFIG_HAL config_hal_fini(); # endif # ifdef CONFIG_DBUS_API config_dbus_fini(); # endif config_dbus_core_fini(); #endif }