linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/30] Rid W=1 warnings in Networking
@ 2020-08-14 11:39 Lee Jones
  2020-08-14 11:39 ` [PATCH 01/30] net: bonding: bond_3ad: Fix a bunch of kerneldoc parameter issues Lee Jones
                   ` (31 more replies)
  0 siblings, 32 replies; 72+ messages in thread
From: Lee Jones @ 2020-08-14 11:39 UTC (permalink / raw)
  To: davem, kuba; +Cc: linux-kernel, Lee Jones

This set is part of a larger effort attempting to clean-up W=1
kernel builds, which are currently overwhelmingly riddled with
niggly little warnings.

There are quite a few W=1 warnings in the Networking code.  My
plan is to work through all of them over the next few weeks.
Hopefully it won't be too long before drivers/net builds clean
with W=1 enabled.

Lee Jones (30):
  net: bonding: bond_3ad: Fix a bunch of kerneldoc parameter issues
  net: bonding: bond_main: Document 'proto' and rename 'new_active'
    parameters
  net: ethernet: 3com: 3c574_cs: Remove set but unused variables 'tx'
    and 'rx'
  net: bonding: bond_alb: Describe
    alb_handle_addr_collision_on_attach()'s 'bond' and 'addr' params
  net: wireless: atmel: atmel: Demote non-kerneldoc header to standard
    comment block
  net: ethernet: 8390: axnet_cs: Document unused parameter 'txqueue'
  net: wireless: broadcom: b43: main: Add braces around empty statements
  net: wireless: ath: carl9170: Mark 'ar9170_qmap' as __maybe_unused
  net: wireless: ath: ath5k: pcu: Add a description for 'band' remove
    one for 'mode'
  net: wan: dlci: Remove set but not used variable 'err'
  net: wireless: cisco: airo: Place brackets around empty statement
  net: wireless: cisco: airo: Fix a myriad of coding style issues
  net: wireless: ath: wil6210: cfg80211: Demote non-kerneldoc headers to
    standard comment blocks
  net: wireless: intel: iwlegacy: common: Remove set but not used
    variable 'len'
  net: wireless: intel: iwlegacy: common: Demote kerneldoc headers to
    standard comment blocks
  net: wireless: intel: ipw2200: Remove set but unused variables 'rc'
    and 'w'
  net: wireless: broadcom: b43legacy: main: Provide braces around empty
    'if' body
  net: fddi: skfp: hwmtm: Remove seemingly unused variable 'ID_sccs'
  net: fddi: skfp: fplustm: Remove seemingly unused variable 'ID_sccs'
  net: wireless: ath: ath5k: base: Fix kerneldoc formatting issue
  net: fddi: skfp: smt: Place definition of 'smt_pdef' under same
    stipulations as its use
  net: wireless: broadcom: brcm80211: brcmfmac: fweh: Remove set but
    unused variable 'err'
  net: wireless: broadcom: brcm80211: brcmfmac: fweh: Fix docrot related
    function documentation issues
  net: wireless: broadcom: brcm80211: brcmsmac: mac80211_if: Demote a
    few non-conformant kerneldoc headers
  net: wireless: intel: ipw2x00: ipw2200: Demote lots of nonconformant
    kerneldoc comments
  net: wireless: broadcom: b43: phy_common: Demote non-conformant
    kerneldoc header
  net: fddi: skfp: smt: Remove seemingly unused variable 'ID_sccs'
  net: fddi: skfp: cfm: Remove set but unused variable 'oldstate'
  net: fddi: skfp: cfm: Remove seemingly unused variable 'ID_sccs'
  net: wireless: broadcom: b43: phy_n: Add empty braces around empty
    statements

 drivers/net/bonding/bond_3ad.c                |  15 +-
 drivers/net/bonding/bond_alb.c                |   4 +-
 drivers/net/bonding/bond_main.c               |   4 +-
 drivers/net/ethernet/3com/3c574_cs.c          |   6 +-
 drivers/net/ethernet/8390/axnet_cs.c          |   1 +
 drivers/net/fddi/skfp/cfm.c                   |  17 +-
 drivers/net/fddi/skfp/fplustm.c               |   4 -
 drivers/net/fddi/skfp/hwmtm.c                 |   4 -
 drivers/net/fddi/skfp/smt.c                   |   7 +-
 drivers/net/wan/dlci.c                        |   3 +-
 drivers/net/wireless/ath/ath5k/base.c         |   2 +-
 drivers/net/wireless/ath/ath5k/pcu.c          |   2 +-
 drivers/net/wireless/ath/carl9170/carl9170.h  |   2 +-
 drivers/net/wireless/ath/wil6210/cfg80211.c   |   4 +-
 drivers/net/wireless/atmel/atmel.c            |   2 +-
 drivers/net/wireless/broadcom/b43/main.c      |   6 +-
 .../net/wireless/broadcom/b43/phy_common.c    |   2 +-
 drivers/net/wireless/broadcom/b43/phy_n.c     |  19 +-
 .../net/wireless/broadcom/b43legacy/main.c    |   3 +-
 .../broadcom/brcm80211/brcmfmac/fweh.c        |  13 +-
 .../broadcom/brcm80211/brcmsmac/mac80211_if.c |  11 +-
 drivers/net/wireless/cisco/airo.c             | 898 +++++++++---------
 drivers/net/wireless/intel/ipw2x00/ipw2200.c  |  45 +-
 drivers/net/wireless/intel/iwlegacy/common.c  |  72 +-
 24 files changed, 582 insertions(+), 564 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 72+ messages in thread

end of thread, other threads:[~2020-08-31 15:20 UTC | newest]

Thread overview: 72+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-14 11:39 [PATCH 00/30] Rid W=1 warnings in Networking Lee Jones
2020-08-14 11:39 ` [PATCH 01/30] net: bonding: bond_3ad: Fix a bunch of kerneldoc parameter issues Lee Jones
2020-08-14 11:39 ` [PATCH 02/30] net: bonding: bond_main: Document 'proto' and rename 'new_active' parameters Lee Jones
2020-08-14 11:39 ` [PATCH 03/30] net: ethernet: 3com: 3c574_cs: Remove set but unused variables 'tx' and 'rx' Lee Jones
2020-08-14 11:39 ` [PATCH 04/30] net: bonding: bond_alb: Describe alb_handle_addr_collision_on_attach()'s 'bond' and 'addr' params Lee Jones
2020-08-14 11:39 ` [PATCH 05/30] net: wireless: atmel: atmel: Demote non-kerneldoc header to standard comment block Lee Jones
2020-08-27 12:16   ` [PATCH 05/30] " Kalle Valo
2020-08-14 11:39 ` [PATCH 06/30] net: ethernet: 8390: axnet_cs: Document unused parameter 'txqueue' Lee Jones
2020-08-14 11:39 ` [PATCH 07/30] net: wireless: broadcom: b43: main: Add braces around empty statements Lee Jones
2020-08-14 15:12   ` Kalle Valo
2020-08-14 16:43     ` Lee Jones
2020-08-14 17:25       ` Kalle Valo
2020-08-17  8:50         ` Lee Jones
2020-08-27  7:42           ` Kalle Valo
2020-08-27  8:49             ` Lee Jones
2020-08-14 11:39 ` [PATCH 08/30] net: wireless: ath: carl9170: Mark 'ar9170_qmap' as __maybe_unused Lee Jones
2020-08-14 15:14   ` Christian Lamparter
2020-08-14 16:40     ` Lee Jones
2020-08-14 17:25       ` Christian Lamparter
2020-08-17  8:43         ` Lee Jones
2020-08-17  8:26     ` Rasmus Villemoes
2020-08-17 12:59       ` Kalle Valo
2020-08-17 18:29         ` Christian Lamparter
2020-08-18  9:50         ` Lee Jones
2020-08-27  7:54           ` Kalle Valo
2020-08-27  9:33   ` [PATCH v2 08/30] net: wireless: ath: carl9170: Convert 'ar9170_qmap' to inline function Lee Jones
2020-08-28 20:28     ` Christian Lamparter
2020-08-31 13:56       ` Kalle Valo
2020-08-31 15:19     ` Kalle Valo
2020-08-14 11:39 ` [PATCH 09/30] net: wireless: ath: ath5k: pcu: Add a description for 'band' remove one for 'mode' Lee Jones
2020-08-17 10:20   ` Kalle Valo
2020-08-14 11:39 ` [PATCH 10/30] net: wan: dlci: Remove set but not used variable 'err' Lee Jones
2020-08-14 11:39 ` [PATCH 11/30] net: wireless: cisco: airo: Place brackets around empty statement Lee Jones
2020-08-14 11:39 ` [PATCH 12/30] net: wireless: cisco: airo: Fix a myriad of coding style issues Lee Jones
2020-08-14 15:15   ` Kalle Valo
2020-08-14 16:38     ` Lee Jones
2020-08-17 13:27       ` Kalle Valo
2020-08-17 18:27         ` Jesse Brandeburg
2020-08-17 20:04           ` Lee Jones
2020-08-17 21:35           ` Ondrej Zary
2020-08-27  7:49             ` Kalle Valo
2020-08-27 20:23               ` Ondrej Zary
2020-08-28  8:59                 ` Kalle Valo
2020-08-28 10:08                   ` Lee Jones
2020-08-28 12:37                     ` Kalle Valo
2020-08-28 21:34                   ` Ondrej Zary
2020-08-14 11:39 ` [PATCH 13/30] net: wireless: ath: wil6210: cfg80211: Demote non-kerneldoc headers to standard comment blocks Lee Jones
2020-08-14 11:39 ` [PATCH 14/30] net: wireless: intel: iwlegacy: common: Remove set but not used variable 'len' Lee Jones
2020-08-14 11:39 ` [PATCH 15/30] net: wireless: intel: iwlegacy: common: Demote kerneldoc headers to standard comment blocks Lee Jones
2020-08-14 11:39 ` [PATCH 16/30] net: wireless: intel: ipw2200: Remove set but unused variables 'rc' and 'w' Lee Jones
2020-08-14 11:39 ` [PATCH 17/30] net: wireless: broadcom: b43legacy: main: Provide braces around empty 'if' body Lee Jones
2020-08-14 11:39 ` [PATCH 18/30] net: fddi: skfp: hwmtm: Remove seemingly unused variable 'ID_sccs' Lee Jones
2020-08-14 11:39 ` [PATCH 19/30] net: fddi: skfp: fplustm: " Lee Jones
2020-08-14 11:39 ` [PATCH 20/30] net: wireless: ath: ath5k: base: Fix kerneldoc formatting issue Lee Jones
2020-08-14 11:39 ` [PATCH 21/30] net: fddi: skfp: smt: Place definition of 'smt_pdef' under same stipulations as its use Lee Jones
2020-08-14 11:39 ` [PATCH 22/30] net: wireless: broadcom: brcm80211: brcmfmac: fweh: Remove set but unused variable 'err' Lee Jones
2020-08-14 11:39 ` [PATCH 23/30] net: wireless: broadcom: brcm80211: brcmfmac: fweh: Fix docrot related function documentation issues Lee Jones
2020-08-14 11:39 ` [PATCH 24/30] net: wireless: broadcom: brcm80211: brcmsmac: mac80211_if: Demote a few non-conformant kerneldoc headers Lee Jones
2020-08-14 11:39 ` [PATCH 25/30] net: wireless: intel: ipw2x00: ipw2200: Demote lots of nonconformant kerneldoc comments Lee Jones
2020-08-14 11:39 ` [PATCH 26/30] net: wireless: broadcom: b43: phy_common: Demote non-conformant kerneldoc header Lee Jones
     [not found]   ` <CAJrvBf00yQQ7F1p1utBuq1oWc2RwnqXijBjaJ+FuxG0mS0TvOA@mail.gmail.com>
2020-08-14 16:36     ` Lee Jones
2020-08-17  8:06   ` Rafał Miłecki
2020-08-17  9:11     ` Lee Jones
2020-08-14 11:39 ` [PATCH 27/30] net: fddi: skfp: smt: Remove seemingly unused variable 'ID_sccs' Lee Jones
2020-08-14 11:39 ` [PATCH 28/30] net: fddi: skfp: cfm: Remove set but unused variable 'oldstate' Lee Jones
2020-08-14 11:39 ` [PATCH 29/30] net: fddi: skfp: cfm: Remove seemingly unused variable 'ID_sccs' Lee Jones
2020-08-14 11:39 ` [PATCH 30/30] net: wireless: broadcom: b43: phy_n: Add empty braces around empty statements Lee Jones
2020-08-15  3:42 ` [PATCH 00/30] Rid W=1 warnings in Networking David Miller
2020-08-17  9:26   ` Lee Jones
2020-08-17 19:02     ` David Miller
2020-08-17 19:58       ` Lee Jones
     [not found] ` <87eeo88pdr.fsf@tynnyri.adurom.net>
2020-08-17  8:16   ` Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).