码迷,mamicode.com
首页 > 系统相关 > 详细

Linux驱动中常用的宏

时间:2017-08-30 17:12:57      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:driver   ccf   span   reg   注册   font   函数   drive   static   

1.module_i2c_driver(adxl34x_driver)展开为

static int __int adxl34x_driver_init(void)
{
return i2c_register_driver(&adxl34x_driver);
}
module_init(adxl34x_driver_init);
static void __exit adxl34x_driver_exit(void)
{
return i2c_del_driver(&adxl34x_driver);
}
module_exit(adxl34x_driver_exit);
作用:代替注册初始化函数和module_init()和module_exit(),如果在初始化函数中什么也不做的话就可以用此来替换。

 

Linux驱动中常用的宏

标签:driver   ccf   span   reg   注册   font   函数   drive   static   

原文地址:http://www.cnblogs.com/hellokitty2/p/7453981.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!