The Linux Kernel API | ||
---|---|---|
<<< Previous | Next >>> |
module_init will add the driver initialization routine in the "__initcall.int" code segment if the driver is checked as "y" or static, or else it will wrap the driver initialization routine with init_module which is used by insmod and modprobe when the driver is used as a module.
<<< Previous | Home | Next >>> |
Driver Basics | Up | module_exit |