本文整理汇总了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);
}
开发者ID:mgrundy,项目名称:bug20-2.6.35-linaro,代码行数:7,代码来源:core.c
示例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);
}
开发者ID:DC07,项目名称:CustomKernelSource,代码行数:8,代码来源:core.c
示例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);
}
开发者ID:PungiZhang,项目名称:ucore_plus-next,代码行数:10,代码来源:core.c
示例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__);
}
开发者ID:AvengerMoJo,项目名称:apc-8750,代码行数:10,代码来源:core.c
示例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
}
开发者ID:Mcjesus15,项目名称:Zio_Kernel,代码行数:10,代码来源:core.c
示例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 */
}
开发者ID:nunogilberto,项目名称:FIH-Kernel,代码行数:15,代码来源:core.c
注:本文中的sdio_unregister_bus函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论