Message ID | 20210517050141.61488-7-shenyang39@huawei.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 00d667fc457d39adc0798d57af0316e8a461ec37 |
Delegated to: | Luca Coelho |
Headers | show |
Series | Rid W=1 warnings in wireless | expand |
Hello: I'm sorry for getting wrong maintainer information. Best Regards, Yang On 2021/5/17 13:01, Yang Shen wrote: > Fixes the following W=1 kernel build warning(s): > > drivers/net/wireless/intel/iwlwifi/mvm/rfi.c:11: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst > drivers/net/wireless/intel/iwlwifi/mvm/rfi.c:14:1: warning: ‘static’ is not at beginning of declaration [-Wold-style-declaration] > > Cc: Stanislav Yakovlev <stas.yakovlev@gmail.com> > Signed-off-by: Yang Shen <shenyang39@huawei.com> > --- > drivers/net/wireless/intel/iwlwifi/mvm/rfi.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/rfi.c b/drivers/net/wireless/intel/iwlwifi/mvm/rfi.c > index 0b818067067c..f1ed73c9f3dd 100644 > --- a/drivers/net/wireless/intel/iwlwifi/mvm/rfi.c > +++ b/drivers/net/wireless/intel/iwlwifi/mvm/rfi.c > @@ -7,11 +7,11 @@ > #include "fw/api/commands.h" > #include "fw/api/phy-ctxt.h" > > -/** > +/* > * DDR needs frequency in units of 16.666MHz, so provide FW with the > * frequency values in the adjusted format. > */ > -const static struct iwl_rfi_lut_entry iwl_rfi_table[IWL_RFI_LUT_SIZE] = { > +static const struct iwl_rfi_lut_entry iwl_rfi_table[IWL_RFI_LUT_SIZE] = { > /* LPDDR4 */ > > /* frequency 3733MHz */ > -- > 2.17.1 > > . >
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/rfi.c b/drivers/net/wireless/intel/iwlwifi/mvm/rfi.c index 0b818067067c..f1ed73c9f3dd 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/rfi.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/rfi.c @@ -7,11 +7,11 @@ #include "fw/api/commands.h" #include "fw/api/phy-ctxt.h" -/** +/* * DDR needs frequency in units of 16.666MHz, so provide FW with the * frequency values in the adjusted format. */ -const static struct iwl_rfi_lut_entry iwl_rfi_table[IWL_RFI_LUT_SIZE] = { +static const struct iwl_rfi_lut_entry iwl_rfi_table[IWL_RFI_LUT_SIZE] = { /* LPDDR4 */ /* frequency 3733MHz */
Fixes the following W=1 kernel build warning(s): drivers/net/wireless/intel/iwlwifi/mvm/rfi.c:11: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst drivers/net/wireless/intel/iwlwifi/mvm/rfi.c:14:1: warning: ‘static’ is not at beginning of declaration [-Wold-style-declaration] Cc: Stanislav Yakovlev <stas.yakovlev@gmail.com> Signed-off-by: Yang Shen <shenyang39@huawei.com> --- drivers/net/wireless/intel/iwlwifi/mvm/rfi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 2.17.1