Name
module_driver —
Helper macro for drivers that don't do anything special in module init/exit. This eliminates a lot of boilerplate. Each module may only use this macro once, and calling it replaces module_init
and module_exit
.
Synopsis
fsfuncmodule_driver ( | __driver, |
| __register, |
| __unregister) ; |
Arguments
__driver
-- undescribed --
__register
-- undescribed --
__unregister
-- undescribed --
Description
Use this macro to construct bus specific macros for registering
drivers, and do not use it on its own.