1. NAME

module_init - driver initialization entry point

2. SYNOPSIS

module_init( x );

3. ARGUMENTS

x
    function to be run at kernel boot time or module insertion

4. DESCRIPTION

module_init will either be called during do_initcalls (if builtin) or at module insertion time (if a module). There can only be one per module.

5. COPYRIGHT