From: <min.li...@renesas.com> Date: Tue, 4 Aug 2020 15:12:14 -0400 > This update includes adjphase support, more debug logs, firmware name > parameter, correct PTP_CLK_REQ_PEROUT support and use do_aux_work to > do delay work.
Way too many changes in one patch, and some of them are not appropriate. > +static char *firmware; > +module_param(firmware, charp, 0); We have various kernel interfaces for handling firmware loading and names. Please use them instead of a custom module paramter. Module paramters are significantly undesirable and addition of such will be rejected by default. Thank you.