.remove = __devexit_p(i2c_gpio_remove),
这里的__devexit_p有什么作用呢?
include/linux/init.h中找到了它的定义:
/* Functions marked as __devexit may be discarded at kernel link time, depending
on config options. Newer versions of binutils detect references from
retained sections to discarded sections and flag an error. Pointers to
__devexit functions must use __devexit_p(function_name), the wrapper will
insert either the function_name or NULL, depending on the config options.
*/
#if defined(MODULE) || defined(CONFIG_HOTPLUG)
#define __devexit_p(x) x
#else
#define __devexit_p(x) NULL
#endif
意义是内核可能在不支持模块且不支持热插拔的时候,需要对 __devexit_p返回NULL。
__devexit_p是在Linux内核中用于标记可以在链接时被丢弃的设备退出函数的一个宏。该宏根据内核配置选项返回函数地址或NULL,确保在不支持模块和热插拔的环境中函数不会被误引用。
990

被折叠的 条评论
为什么被折叠?



