Linux Kernel设备驱动模型之平台设备初始化

 

static const struct dev_pm_ops platform_dev_pm_ops = {  .runtime_suspend = pm_generic_runtime_suspend,  .runtime_resume = pm_generic_runtime_resume,  USE_PLATFORM_PM_SLEEP_OPS };

struct bus_type platform_bus_type = {  .name  = "platform",  .dev_groups = platform_dev_groups,  .match  = platform_match,  .uevent  = platform_uevent,  .pm  = &platform_dev_pm_ops, }; EXPORT_SYMBOL_GPL(platform_bus_type);

int __init platform_bus_init(void) {  int error;

 early_platform_cleanup();

 error = device_register(&platform_bus);  if (error)   return error;  error =  bus_register(&platform_bus_type);  if (error)   device_unregister(&platform_bus);  of_platform_register_reconfig_notifier();  return error; }

 
 
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值