init.h: Protect against multiple includes
This commit is contained in:
parent
c90edb451d
commit
03dfa30b70
@ -18,6 +18,9 @@
|
|||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef INIT_H
|
||||||
|
#define INIT_H
|
||||||
|
|
||||||
struct initcall_func {
|
struct initcall_func {
|
||||||
void (*fptr)();
|
void (*fptr)();
|
||||||
};
|
};
|
||||||
@ -29,3 +32,5 @@ struct initcall_func {
|
|||||||
#define early_initcall(func) _initcall("early", 0, func)
|
#define early_initcall(func) _initcall("early", 0, func)
|
||||||
#define driversubsys_initcall(func) _initcall("driversubsys", 1, func)
|
#define driversubsys_initcall(func) _initcall("driversubsys", 1, func)
|
||||||
#define device_initcall(func) _initcall("device", 2, func)
|
#define device_initcall(func) _initcall("device", 2, func)
|
||||||
|
|
||||||
|
#endif /* INIT_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user