当前位置: 首页>>代码示例>>C++>>正文


C++ platform_driver_unregister函数代码示例

本文整理汇总了C++中platform_driver_unregister函数的典型用法代码示例。如果您正苦于以下问题:C++ platform_driver_unregister函数的具体用法?C++ platform_driver_unregister怎么用?C++ platform_driver_unregister使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了platform_driver_unregister函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: tricolor_led_exit

static void __exit tricolor_led_exit(void)
{
	printk(KERN_ERR "tricolor_leds_backlight_exit: module exit\n");
	platform_driver_unregister(&tricolor_led_driver);
}
开发者ID:sparkmbox,项目名称:Micromax_A57_kernel_source_code,代码行数:5,代码来源:leds-tricolor.c

示例2: d2199_regulator_exit

static void __exit d2199_regulator_exit(void)
{
	platform_driver_unregister(&d2199_regulator_driver);
}
开发者ID:GalaxyTab4,项目名称:maxicm_kernel_samsung_degaswifi,代码行数:4,代码来源:d2199-regulator.c

示例3: atcmd_exit

static void __exit atcmd_exit(void)
{
	platform_driver_unregister(&atcmd_driver);
}
开发者ID:CSRedRat,项目名称:CM-LG-L5_Kernel,代码行数:4,代码来源:eve_at.c

示例4: tegra_max98088_modexit

static void __exit tegra_max98088_modexit(void)
{
	platform_driver_unregister(&tegra_max98088_driver);
}
开发者ID:AndroidDeveloperAlliance,项目名称:ZenKernel_Grouper,代码行数:4,代码来源:tegra_max98088.c

示例5: aml_sysled_exit

static void __exit aml_sysled_exit(void)
{
    INFO("module exit\n");
    platform_driver_unregister(&aml_sysled_driver);
}
开发者ID:wetek-enigma,项目名称:linux-wetek-3.14.y,代码行数:5,代码来源:aml_led_sys.c

示例6: mfc_exit

static void __exit mfc_exit(void)
{
	platform_driver_unregister(&mfc_driver);
	mfc_info("FIMV MFC(Multi Function Codec) V5.x exit.\n");
}
开发者ID:Sk8tr419,项目名称:linux_kernel_sgh-i777,代码行数:5,代码来源:mfc_dev.c

示例7: accton_as5916_54xm_led_exit

static void __exit accton_as5916_54xm_led_exit(void)
{
	platform_device_unregister(ledctl->pdev);
	platform_driver_unregister(&accton_as5916_54xm_led_driver);
	kfree(ledctl);
}
开发者ID:carlroth,项目名称:OpenNetworkLinux,代码行数:6,代码来源:x86-64-accton-as5916-54xm-leds.c

示例8: rfkill_bluetooth_exit

static void __exit rfkill_bluetooth_exit(void)
{
	printk(KERN_INFO "-->%s\n", __func__);
	platform_driver_unregister(&rfkill_bluetooth_driver);
}
开发者ID:123vipulj,项目名称:BeastPro-Kernel-Samsung-StarPro,代码行数:5,代码来源:board-bluetooth-bcm4330.c

示例9: DW9718AF_i2C_exit

static void __exit DW9718AF_i2C_exit(void)
{
	platform_driver_unregister(&g_stDW9718AF_Driver);
}
开发者ID:vitek999,项目名称:android_kernel_lg_mm,代码行数:4,代码来源:DW9718AF.c

示例10: cpubw_hwmon_exit

static void __exit cpubw_hwmon_exit(void)
{
	platform_driver_unregister(&cpubw_hwmon_driver);
}
开发者ID:Arc-Team,项目名称:android_kernel_htc_a11,代码行数:4,代码来源:governor_cpubw_hwmon.c

示例11: hdmi_dai_exit

static void __exit hdmi_dai_exit(void)
{
	platform_driver_unregister(&hdmi_dai_driver);
}
开发者ID:303750856,项目名称:linux-3.1,代码行数:4,代码来源:omap-hdmi.c

示例12: dnv_pinctrl_exit

static void __exit dnv_pinctrl_exit(void)
{
	platform_driver_unregister(&dnv_pinctrl_driver);
}
开发者ID:AlexShiLucky,项目名称:linux,代码行数:4,代码来源:pinctrl-denverton.c

示例13: msm_hdmi_phy_driver_unregister

void __exit msm_hdmi_phy_driver_unregister(void)
{
	platform_driver_unregister(&msm_hdmi_phy_platform_driver);
}
开发者ID:Lyude,项目名称:linux,代码行数:4,代码来源:hdmi_phy.c

示例14: tegra_aic326x_modexit

static void __exit tegra_aic326x_modexit(void)
{
	platform_driver_unregister(&tegra_aic326x_driver);
}
开发者ID:coreentin,项目名称:android_kernel_nvidia_s8515,代码行数:4,代码来源:tegra_aic326x.c

示例15: doubleshot_rfkill_exit

static void __exit doubleshot_rfkill_exit(void)
{
	platform_driver_unregister(&doubleshot_rfkill_driver);
}
开发者ID:AmeriCanAndroid,项目名称:kernel-android-msm-2.6.35,代码行数:4,代码来源:board-doubleshot-rfkill.c


注:本文中的platform_driver_unregister函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。