linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/21] Rid W=1 warnings from IDE
@ 2021-06-02 10:17 Lee Jones
  2021-06-02 10:17 ` [PATCH 21/21] ide: pmac: Staticise local function 'pmac_ide_probe' Lee Jones
  2021-06-07  8:26 ` [PATCH 00/21] Rid W=1 warnings from IDE Christoph Hellwig
  0 siblings, 2 replies; 5+ messages in thread
From: Lee Jones @ 2021-06-02 10:17 UTC (permalink / raw)
  To: lee.jones
  Cc: linux-ide, Mike Waychison, Paul Mackerras, Christopher J. Reimer,
	Tim Hockin, Erik Andersen, Alan Cox, CJ, Sergei Shtylyov,
	Duncan Laurie, Scott Snyder, Gadi Oxman, Andre Hedrick,
	Christian Brunner, Jens Axboe, or, Benoit Poulot-Cazajous,
	Robert Bringman, linux-kernel, Clear Zhang, Mark Lord, Adrian Sun,
	Frank Tiernan, linuxppc-dev, David S. Miller

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.

Lee Jones (21):
  ide: alim15x3: Document alim15x3_init_one()'s 'id' param
  ide: ide-dma: Document ide_dma_unmap_sg()'s missing 'cmd' param
  ide: ide-dma-sff: Provide some missing 'param' descriptions
  ide: ide-io: Fix a few kernel-doc misdemeanours
  ide: ide-proc: Strip out unused fops structure and accompanying
    call-back
  ide: cs5530: Fix incorrect documentation for function
    init_chipset_cs5530()
  ide: ide-probe: Fix-up incorrectly documented function
    probe_for_drive()
  ide: hpt366: Provide some missing descriptions for 'f_{low,high}'
  ide: piix: Remove unused variable 'sitre'
  ide: pdc202xx_new: Supply missing description for 'set_indexed_reg()'s
    'value' param
  ide: slc90e66: Remove unused variable 'sitre'
  ide: it821x: Fix a couple of incorrectly documented functions
  ide: siimage: Fix some incorrectly documented functions/params
  ide: via82cxxx: Fix misdocumentation of via_set_speed()'s 'hwif' param
  ide: ide-cd_ioctl: Remove unused variable 'stat'
  ide: ide-cd: Demote kernel-doc abuse
  ide: ide-acpi: Mark debugging variable 'bus' as __maybe_unused
  ide: ide-io: Document ide_intr()'s param 'irq'
  ide: piix: Fix incorrectly documented param 'hwif'
  ide: ide-acpi: Provide missing description for param 'obj_loc'
  ide: pmac: Staticise local function 'pmac_ide_probe'

 drivers/ide/alim15x3.c     |  1 +
 drivers/ide/cs5530.c       |  2 +-
 drivers/ide/hpt366.c       |  2 ++
 drivers/ide/ide-acpi.c     |  4 +++-
 drivers/ide/ide-cd.c       |  2 +-
 drivers/ide/ide-cd_ioctl.c |  3 +--
 drivers/ide/ide-dma-sff.c  |  4 ++++
 drivers/ide/ide-dma.c      |  1 +
 drivers/ide/ide-io.c       |  9 +++++----
 drivers/ide/ide-probe.c    |  2 +-
 drivers/ide/ide-proc.c     | 13 -------------
 drivers/ide/it821x.c       |  4 ++--
 drivers/ide/pdc202xx_new.c |  1 +
 drivers/ide/piix.c         |  4 +---
 drivers/ide/pmac.c         |  2 +-
 drivers/ide/siimage.c      |  4 ++--
 drivers/ide/slc90e66.c     |  3 +--
 drivers/ide/via82cxxx.c    |  2 +-
 18 files changed, 29 insertions(+), 34 deletions(-)

Cc: Adrian Sun <a.sun@sun.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Andre Hedrick <andre@linux-ide.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Benoit Poulot-Cazajous <poulot@chorus.fr>
Cc: Christian Brunner <chb@muc.de>
Cc: "Christopher J. Reimer" <reimer@doe.carleton.ca>
Cc: CJ <cjtsai@ali.com.tw>
Cc: Clear Zhang <Clear.Zhang@ali.com.tw>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Duncan Laurie <void@sun.com>
Cc: Erik Andersen <andersee@debian.org>
Cc: Frank Tiernan <frankt@promise.com>
Cc: Gadi Oxman <gadio@netvision.net.il>
Cc: Jens Axboe <axboe@suse.de>
Cc: linux-ide@vger.kernel.org
Cc: linuxppc-dev@lists.ozlabs.org
Cc: Mark Lord <mlord@pobox.com>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Mike Waychison <crlf@sun.com>
Cc: or <source@mvista.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Robert Bringman <rob@mars.trion.com>
Cc: Scott Snyder <snyder@fnald0.fnal.gov>
Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Cc: "Software, Inc" <source@mvista.com>
Cc: support to <linux-ide@vger.kernel.org>
Cc: Tim Hockin <thockin@sun.com>
-- 
2.31.1


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

* [PATCH 21/21] ide: pmac: Staticise local function 'pmac_ide_probe'
  2021-06-02 10:17 [PATCH 00/21] Rid W=1 warnings from IDE Lee Jones
@ 2021-06-02 10:17 ` Lee Jones
  2021-06-07  8:26 ` [PATCH 00/21] Rid W=1 warnings from IDE Christoph Hellwig
  1 sibling, 0 replies; 5+ messages in thread
From: Lee Jones @ 2021-06-02 10:17 UTC (permalink / raw)
  To: lee.jones
  Cc: linux-kernel, linux-ide, Paul Mackerras, linuxppc-dev,
	David S. Miller

Fixes the following W=1 kernel build warning(s):

 drivers/ide/pmac.c:1418:12: warning: no previous prototype for ‘pmac_ide_probe’ [-Wmissing-prototypes]

Cc: "David S. Miller" <davem@davemloft.net>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: linux-ide@vger.kernel.org
Cc: linuxppc-dev@lists.ozlabs.org
Signed-off-by: Lee Jones <lee.jones@linaro.org>
---
 drivers/ide/pmac.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/ide/pmac.c b/drivers/ide/pmac.c
index ea0b064b5f56b..d51a2e252b6f2 100644
--- a/drivers/ide/pmac.c
+++ b/drivers/ide/pmac.c
@@ -1415,7 +1415,7 @@ static struct pci_driver pmac_ide_pci_driver = {
 };
 MODULE_DEVICE_TABLE(pci, pmac_ide_pci_match);
 
-int __init pmac_ide_probe(void)
+static int __init pmac_ide_probe(void)
 {
 	int error;
 
-- 
2.31.1


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

* Re: [PATCH 00/21] Rid W=1 warnings from IDE
  2021-06-02 10:17 [PATCH 00/21] Rid W=1 warnings from IDE Lee Jones
  2021-06-02 10:17 ` [PATCH 21/21] ide: pmac: Staticise local function 'pmac_ide_probe' Lee Jones
@ 2021-06-07  8:26 ` Christoph Hellwig
  2021-06-14  9:12   ` Lee Jones
  1 sibling, 1 reply; 5+ messages in thread
From: Christoph Hellwig @ 2021-06-07  8:26 UTC (permalink / raw)
  To: Lee Jones
  Cc: linux-ide, Mike Waychison, Paul Mackerras, Christopher J. Reimer,
	Tim Hockin, Erik Andersen, Alan Cox, CJ, Sergei Shtylyov,
	Duncan Laurie, Scott Snyder, Gadi Oxman, Andre Hedrick,
	Christian Brunner, Jens Axboe, or, Benoit Poulot-Cazajous,
	Robert Bringman, linux-kernel, Clear Zhang, Mark Lord, Adrian Sun,
	Frank Tiernan, linuxppc-dev, David S. Miller

Please don't touch this code as it is about to be removed entirely.

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

* Re: [PATCH 00/21] Rid W=1 warnings from IDE
  2021-06-07  8:26 ` [PATCH 00/21] Rid W=1 warnings from IDE Christoph Hellwig
@ 2021-06-14  9:12   ` Lee Jones
  2021-06-16 13:52     ` Christoph Hellwig
  0 siblings, 1 reply; 5+ messages in thread
From: Lee Jones @ 2021-06-14  9:12 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: linux-ide, Mike Waychison, Paul Mackerras, Christopher J. Reimer,
	Tim Hockin, Erik Andersen, Alan Cox, CJ, Sergei Shtylyov,
	Duncan Laurie, Scott Snyder, Gadi Oxman, Andre Hedrick,
	Christian Brunner, Jens Axboe, or, Benoit Poulot-Cazajous,
	Robert Bringman, linux-kernel, Clear Zhang, Mark Lord, Adrian Sun,
	Frank Tiernan, linuxppc-dev, David S. Miller

On Mon, 07 Jun 2021, Christoph Hellwig wrote:

> Please don't touch this code as it is about to be removed entirely.

Do you have an ETA for this work?

-- 
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog

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

* Re: [PATCH 00/21] Rid W=1 warnings from IDE
  2021-06-14  9:12   ` Lee Jones
@ 2021-06-16 13:52     ` Christoph Hellwig
  0 siblings, 0 replies; 5+ messages in thread
From: Christoph Hellwig @ 2021-06-16 13:52 UTC (permalink / raw)
  To: Lee Jones
  Cc: linux-ide, Mike Waychison, Paul Mackerras, Christopher J. Reimer,
	Tim Hockin, Erik Andersen, Alan Cox, CJ, Sergei Shtylyov,
	Christoph Hellwig, Duncan Laurie, Scott Snyder, Gadi Oxman,
	Andre Hedrick, Christian Brunner, Jens Axboe, or,
	Benoit Poulot-Cazajous, Robert Bringman, linux-kernel,
	Clear Zhang, Mark Lord, Adrian Sun, Frank Tiernan, linuxppc-dev,
	David S. Miller

On Mon, Jun 14, 2021 at 10:12:28AM +0100, Lee Jones wrote:
> On Mon, 07 Jun 2021, Christoph Hellwig wrote:
> 
> > Please don't touch this code as it is about to be removed entirely.
> 
> Do you have an ETA for this work?

I just resent the series.

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

end of thread, other threads:[~2021-06-16 13:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-02 10:17 [PATCH 00/21] Rid W=1 warnings from IDE Lee Jones
2021-06-02 10:17 ` [PATCH 21/21] ide: pmac: Staticise local function 'pmac_ide_probe' Lee Jones
2021-06-07  8:26 ` [PATCH 00/21] Rid W=1 warnings from IDE Christoph Hellwig
2021-06-14  9:12   ` Lee Jones
2021-06-16 13:52     ` Christoph Hellwig

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).