linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/15] [Set 2] Rid W=1 warnings from ATA
@ 2021-03-18  8:51 Lee Jones
  2021-03-18  8:51 ` [PATCH 01/15] ata: pata_pdc202xx_old: Fix some incorrectly named functions Lee Jones
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Lee Jones @ 2021-03-18  8:51 UTC (permalink / raw)
  To: lee.jones
  Cc: linux-kernel, Alan Cox, ALWAYS copy, Andre Hedrick,
	Colten Edwards, Hat Inc, Jan Harkes, Jaromir Koutek, Jens Axboe,
	L.C. Chang, Lionel Bouton, Mark Lord, Samuel Thibault,
	Torben Mathiasen, Vojtech Pavlik

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.

This is set 2 out of 2 sets required.

Lee Jones (15):
  ata: pata_pdc202xx_old: Fix some incorrectly named functions
  ata: pata_sil680: Add some missing function parameter docs
  ata: pata_sis: Remove superfluous param description and supply another
  ata: pata_triflex: Repair some misnamed functions and fix some param
    descriptions
  ata: pata_it821x: Fix possible doc-rotted function names
  ata: pata_via: Fix a kernel-doc formatting issue
  ata: pata_piccolo: 'ata_tosh_init()' is misnamed in its header
  ata: pata_sl82c105: Fix potential doc-rot
  ata: pata_opti: Fix spelling issue of 'val' in 'opti_write_reg()'
  ata: ata_generic: Fix misspelling of 'ata_generic_init_one()'
  ata: pata_legacy: Repair a couple kernel-doc problems
  ata: pata_cs5530: Fix misspelling of 'cs5530_init_one()'s 'pdev' param
  ata: sata_mv: Fix misnaming of 'mv_bmdma_stop()'
  ata: libata-acpi: Fix function name and provide description for
    'prev_gtf'
  ata: pata_acpi: Fix some incorrect function param descriptions

 drivers/ata/ata_generic.c       | 2 +-
 drivers/ata/libata-acpi.c       | 3 ++-
 drivers/ata/pata_acpi.c         | 6 +++---
 drivers/ata/pata_cs5530.c       | 2 +-
 drivers/ata/pata_it821x.c       | 4 ++--
 drivers/ata/pata_legacy.c       | 8 ++++----
 drivers/ata/pata_opti.c         | 2 +-
 drivers/ata/pata_pdc202xx_old.c | 4 ++--
 drivers/ata/pata_piccolo.c      | 2 +-
 drivers/ata/pata_sil680.c       | 2 ++
 drivers/ata/pata_sis.c          | 2 +-
 drivers/ata/pata_sl82c105.c     | 2 +-
 drivers/ata/pata_triflex.c      | 7 +++----
 drivers/ata/pata_via.c          | 2 +-
 drivers/ata/sata_mv.c           | 2 +-
 15 files changed, 26 insertions(+), 24 deletions(-)

Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: ALWAYS copy <linux-ide@vger.kernel.org>
Cc: Andre Hedrick <andre@linux-ide.org>
Cc: Colten Edwards <pje120@cs.usask.ca>
Cc: Hat Inc <alan@redhat.com>
Cc: Jan Harkes <jaharkes@cwi.nl>
Cc: Jaromir Koutek <miri@punknet.cz>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: "L.C. Chang" <lcchang@sis.com.tw>
Cc: linux-ide@vger.kernel.org
Cc: Lionel Bouton <Lionel.Bouton@inet6.fr>
Cc: Mark Lord <mlord@pobox.com>
Cc: Red Hat <alan@redhat.com>
Cc: Samuel Thibault <samuel.thibault@ens-lyon.org>
Cc: Torben Mathiasen <torben.mathiasen@hp.com>
Cc: Vojtech Pavlik <vojtech@suse.cz>
-- 
2.27.0


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

end of thread, other threads:[~2021-03-31  2:22 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-18  8:51 [PATCH 00/15] [Set 2] Rid W=1 warnings from ATA Lee Jones
2021-03-18  8:51 ` [PATCH 01/15] ata: pata_pdc202xx_old: Fix some incorrectly named functions Lee Jones
2021-03-18  8:51 ` [PATCH 02/15] ata: pata_sil680: Add some missing function parameter docs Lee Jones
2021-03-18  8:51 ` [PATCH 03/15] ata: pata_sis: Remove superfluous param description and supply another Lee Jones
2021-03-18  8:51 ` [PATCH 04/15] ata: pata_triflex: Repair some misnamed functions and fix some param descriptions Lee Jones
2021-03-18  8:51 ` [PATCH 05/15] ata: pata_it821x: Fix possible doc-rotted function names Lee Jones
2021-03-18  8:51 ` [PATCH 06/15] ata: pata_via: Fix a kernel-doc formatting issue Lee Jones
2021-03-18  8:51 ` [PATCH 07/15] ata: pata_piccolo: 'ata_tosh_init()' is misnamed in its header Lee Jones
2021-03-18  8:51 ` [PATCH 08/15] ata: pata_sl82c105: Fix potential doc-rot Lee Jones
2021-03-18  8:51 ` [PATCH 09/15] ata: pata_opti: Fix spelling issue of 'val' in 'opti_write_reg()' Lee Jones
2021-03-18  8:51 ` [PATCH 10/15] ata: ata_generic: Fix misspelling of 'ata_generic_init_one()' Lee Jones
2021-03-18  8:51 ` [PATCH 11/15] ata: pata_legacy: Repair a couple kernel-doc problems Lee Jones
2021-03-18  8:51 ` [PATCH 12/15] ata: pata_cs5530: Fix misspelling of 'cs5530_init_one()'s 'pdev' param Lee Jones
2021-03-18  8:51 ` [PATCH 13/15] ata: sata_mv: Fix misnaming of 'mv_bmdma_stop()' Lee Jones
2021-03-18  8:51 ` [PATCH 14/15] ata: libata-acpi: Fix function name and provide description for 'prev_gtf' Lee Jones
2021-03-18  8:51 ` [PATCH 15/15] ata: pata_acpi: Fix some incorrect function param descriptions Lee Jones
2021-03-30 13:20 ` [PATCH 00/15] [Set 2] Rid W=1 warnings from ATA Lee Jones
2021-03-31  2:21 ` Jens Axboe

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