Hi, Marcel, On Thu, Sep 27, 2018 at 12:47:11PM +0200, Marcel Holtmann wrote: > Hi Luiz, > > > When there is an error in either ath3k_load_firmware() or > > ath3k_load_fwfile(), the inlined function ath3k_log_failed_loading() is > > called receiving the error returned and both the block size requested to > > load and the size actually loaded. These values are printed in an error > > message using the macro BT_ERR. > > > > This patch creates a new function which does the same but also receives > > the "count" variable, in order to show more information when a failing > > firmware loading happens. The calls to the older function were changed > > to the new one. > > > > This event is being monitored in a laptop with an adapter which > > identifies itself as 0cf3:0036, where sometimes there are errors in the > > firmware loading process. > > > > Signed-off-by: Luiz Carlos Ramos <lramos.prof@xxxxxxxxxxxx> > > --- > > drivers/bluetooth/ath3k.c | 12 ++++++++++-- > > 1 file changed, 10 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c > > index 3a8c47efea55..ebc312cb4412 100644 > > --- a/drivers/bluetooth/ath3k.c > > +++ b/drivers/bluetooth/ath3k.c > > @@ -209,6 +209,14 @@ static inline void ath3k_log_failed_loading(int err, int len, int size) > > err, len, size); > > } > > > > +static inline void ath3k_log_failed_loading_2(int err, int len, int size, > > + int count) > > +{ > > + BT_ERR("%s err = %d, len = %d, size = %d, count = %d", > > + "Error in firmware loading", > > + err, len, size, count); > > +} > > + > > just change the the original ath3k_log_failed_loading to include the count parameter. > Ok, fine. I'll send it in a next message. Many thanks, Luiz