Recently I am reading linux kernel code and I read this:
#define MODULE_PARM_DESC(_parm, desc) \
__MODULE_INFO(parm, _parm, #_parm ":" desc)
I am very confused that why there is a "parm", what is the relationship between "parm" and "_parm"?
Recently I am reading linux kernel code and I read this:
#define MODULE_PARM_DESC(_parm, desc) \
__MODULE_INFO(parm, _parm, #_parm ":" desc)
I am very confused that why there is a "parm", what is the relationship between "parm" and "_parm"?