1MODULE_INIT(9) Driver Basics MODULE_INIT(9)
23
4
NAME
6module_init - driver initialization entry point
7
SYNOPSIS
9module_init(x);
10
ARGUMENTS
12x
13function to be run at kernel boot time or module insertion
14
DESCRIPTION
16module_init will either be called during do_initcalls (if builtin) or
17at module insertion time (if a module). There can only be one per
18module.
19
COPYRIGHT
21Kernel Hackers Manual 3.10 June 2019 MODULE_INIT(9)