浏览代码

Use PREFIX_OBJECT to give the init_fn table variables meaningful names.

tags/v0.9.3
Michael Brown 19 年前
父节点
当前提交
d2d4978f4f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/include/init.h

+ 1
- 1
src/include/init.h 查看文件

@@ -47,7 +47,7 @@ struct init_fn {
47 47
 
48 48
 /* Macro for creating an initialisation function table entry */
49 49
 #define INIT_FN( init_order, init_func, reset_func, exit_func )		      \
50
-	static struct init_fn init_functions				      \
50
+	static struct init_fn PREFIX_OBJECT(init_fn__)			      \
51 51
 	    __attribute__ (( used, __table_section(init_fn,init_order) )) = { \
52 52
 		.init = init_func,					      \
53 53
 		.reset = reset_func,					      \

正在加载...
取消
保存