From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: Re: [PATCH] net: wireless: FTM: fix kernel-doc "cannot understand" warnings Date: Sun, 16 Dec 2018 18:00:21 -0800 Message-ID: <9ea67d70-259c-a16d-fcc0-8e70b3b2d158@infradead.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: Pradeep Kumar Chitrapu , Johannes Berg , David Spinadel , linux-wireless To: "netdev@vger.kernel.org" , David Miller Return-path: Received: from merlin.infradead.org ([205.233.59.134]:48006 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726276AbeLQCAa (ORCPT ); Sun, 16 Dec 2018 21:00:30 -0500 In-Reply-To: Content-Language: en-US Sender: netdev-owner@vger.kernel.org List-ID: ping? On 12/6/18 12:58 PM, Randy Dunlap wrote: > From: Randy Dunlap > > Fix kernel-doc warnings in FTM due to missing "struct" keyword. > > Fixes 109 warnings from : > ../include/net/cfg80211.h:2838: warning: cannot understand function prototype: 'struct cfg80211_ftm_responder_stats ' > > and fixes 88 warnings from : > ../include/net/mac80211.h:477: warning: cannot understand function prototype: 'struct ieee80211_ftm_responder_params ' > > Fixes: 81e54d08d9d8 ("cfg80211: support FTM responder configuration/statistics") > Fixes: bc847970f432 ("mac80211: support FTM responder configuration/statistics") > > Signed-off-by: Randy Dunlap > Cc: Pradeep Kumar Chitrapu > Cc: Johannes Berg > Cc: David Spinadel > --- > include/net/cfg80211.h | 2 +- > include/net/mac80211.h | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > --- lnx-420-rc5.orig/include/net/cfg80211.h > +++ lnx-420-rc5/include/net/cfg80211.h > @@ -2815,7 +2815,7 @@ struct cfg80211_external_auth_params { > }; > > /** > - * cfg80211_ftm_responder_stats - FTM responder statistics > + * struct cfg80211_ftm_responder_stats - FTM responder statistics > * > * @filled: bitflag of flags using the bits of &enum nl80211_ftm_stats to > * indicate the relevant values in this struct for them > --- lnx-420-rc5.orig/include/net/mac80211.h > +++ lnx-420-rc5/include/net/mac80211.h > @@ -467,7 +467,7 @@ struct ieee80211_mu_group_data { > }; > > /** > - * ieee80211_ftm_responder_params - FTM responder parameters > + * struct ieee80211_ftm_responder_params - FTM responder parameters > * > * @lci: LCI subelement content > * @civicloc: CIVIC location subelement content > > > -- ~Randy