本文整理汇总了C++中sdio_unregister_bus函数的典型用法代码示例。如果您正苦于以下问题:C++ sdio_unregister_bus函数的具体用法?C++ sdio_unregister_bus怎么用?C++ sdio_unregister_bus使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了sdio_unregister_bus函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: mmc_exit
static void __exit mmc_exit(void)
{
sdio_unregister_bus();
mmc_unregister_host_class();
mmc_unregister_bus();
destroy_workqueue(workqueue);
}
示例2: mmc_exit
static void __exit mmc_exit(void)
{
sdio_unregister_bus();
mmc_unregister_host_class();
mmc_unregister_bus();
destroy_workqueue(workqueue);
wake_lock_destroy(&mmc_delayed_work_wake_lock);
}
示例3: mmc_exit
static void __exit mmc_exit(void)
{
#ifdef UCONFIG_DDE_MMC_HAVE_SDIO
sdio_unregister_bus();
#endif
mmc_unregister_host_class();
mmc_unregister_bus();
destroy_workqueue(workqueue);
wake_lock_destroy(&mmc_delayed_work_wake_lock);
}
示例4: mmc_exit
static void __exit mmc_exit(void)
{
DBG("[%s] s\n",__func__);
sdio_unregister_bus();
mmc_unregister_host_class();
mmc_unregister_bus();
destroy_workqueue(workqueue);
wake_lock_destroy(&mmc_delayed_work_wake_lock);
DBG("[%s] e\n",__func__);
}
示例5: mmc_exit
static void __exit mmc_exit(void)
{
sdio_unregister_bus();
mmc_unregister_host_class();
mmc_unregister_bus();
destroy_workqueue(workqueue);
#if 0 //Robert, 20101006, KB62_CR766 : Fix unexpectedly remove SD card issue
wake_lock_destroy(&mmc_delayed_work_wake_lock);
#endif
}
示例6: mmc_exit
static void __exit mmc_exit(void)
{
sdio_unregister_bus();
mmc_unregister_host_class();
mmc_unregister_bus();
destroy_workqueue(workqueue);
wake_lock_destroy(&mmc_delayed_work_wake_lock);
/* FIH, BillHJChang, 2009/11/20 { */
/* [FXX_CR], issue of card detect fail in suspend mode */
#ifdef CONFIG_FIH_FXX
wake_lock_destroy(&sdcard_idle_wake_lock);
#endif
/* } FIH, BillHJChang, 2009/11/20 */
}