[snip] > > +/* > > + * Function called by the key driver to report the new status > > + * of the key. > > + */ > > +void rfkill_report_event(struct rfkill *rfkill, int new_status) > > +{ > > + mutex_lock(&master->mutex); > > + > > + if (rfkill_check_key(rfkill->key, new_status)) > > + schedule_work(&master->toggle_work); > > + > > + mutex_unlock(&master->mutex); > > +} > > +EXPORT_SYMBOL_GPL(rfkill_report_event); > > Please use kernel-doc notation for non-static functions. > See Documentation/kernel-doc-nano-HOWTO.txt for more info.
All kernel-doc notations were placed in the rfkill.h header. I'll move them to the rfkill.c file. [snip] > > + * @rfkill: rfkill structure to be deregistered > > + * @init_status: initial status of the key at the time this function is > > called > > + * > > + * This function should be called by the key driver when the rfkill > > structure > > + * needs to be registered. Immediately from registration the key driver > > + * should be able to receive calls through the poll, enable_radio and > > + * disable_radio handlers if those were registered. > > + */ > > +int rfkill_register_key(struct rfkill *rfkill, int init_status); > > + > > +/** > > + * rfkill_deregister_key - Deregister a previously registered rfkill > > structre. > > "structure" Thanks for the pointers. I'll fix them asap. Ivo - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html