All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/26] thunderbolt: kernel-doc fixes
@ 2025-09-08 16:32 Mika Westerberg
  2025-09-08 16:32 ` [PATCH 01/26] thunderbolt: Update acpi.c function documentation Mika Westerberg
                   ` (26 more replies)
  0 siblings, 27 replies; 29+ messages in thread
From: Mika Westerberg @ 2025-09-08 16:32 UTC (permalink / raw)
  To: linux-usb
  Cc: Yehezkel Bernat, Lukas Wunner, Andreas Noever, Andy Shevchenko,
	Alan Borzeszkowski, Mika Westerberg

Hi all,                                                                                             
                                                                                                    
This series fixes kernel-docs in the Thunderbolt/USB4 subsystem to adhere
the current standards.

All errors/warnings in documentation were found by kernel-doc script and
were subsequently fixed. Main recurring complaint was incorrect or missing
"Return: " section in kernel-doc comments. Besides that, few missing
parameters and structure field descriptions.                                                        

No functional changes.

This series was suggested by Andy Shevchenko.

Alan Borzeszkowski (26):
  thunderbolt: Update acpi.c function documentation
  thunderbolt: Update cap.c function documentation
  thunderbolt: Update clx.c function documentation
  thunderbolt: Update ctl.c function documentation
  thunderbolt: Add missing documentation in ctl.h tb_cfg_request struct
  thunderbolt: Update dma_port.c function documentation
  thunderbolt: Update domain.c function documentation
  thunderbolt: Update eeprom.c function documentation
  thunderbolt: Update lc.c function documentation
  thunderbolt: Update nhi.c function documentation
  thunderbolt: Add missing documentation in nhi_regs.h ring_desc structure
  thunderbolt: Update nvm.c function documentation
  thunderbolt: Update path.c function documentation
  thunderbolt: Update property.c function documentation
  thunderbolt: Update retimer.c function documentation
  thunderbolt: Update switch.c function documentation
  thunderbolt: Update tb.c function documentation
  thunderbolt: Update tb.h function documentation
  thunderbolt: Add missing documentation in tb.h
  thunderbolt: Update tmu.c function documentation
  thunderbolt: Update tunnel.c function documentation
  thunderbolt: Update tunnel.h function documentation
  thunderbolt: Update usb4.c function documentation
  thunderbolt: Update usb4_port.c function documentation
  thunderbolt: Update xdomain.c function documentation
  thunderbolt: Update thunderbolt.h header file

 drivers/thunderbolt/acpi.c      |  28 +--
 drivers/thunderbolt/cap.c       |  49 +++--
 drivers/thunderbolt/clx.c       |  12 +-
 drivers/thunderbolt/ctl.c       |  33 +++-
 drivers/thunderbolt/ctl.h       |   1 +
 drivers/thunderbolt/dma_port.c  |  21 +-
 drivers/thunderbolt/domain.c    |  28 ++-
 drivers/thunderbolt/eeprom.c    |   4 +-
 drivers/thunderbolt/lc.c        |  58 ++++--
 drivers/thunderbolt/nhi.c       |  17 +-
 drivers/thunderbolt/nhi_regs.h  |   6 +
 drivers/thunderbolt/nvm.c       |  42 ++--
 drivers/thunderbolt/path.c      |  14 +-
 drivers/thunderbolt/property.c  |  38 +++-
 drivers/thunderbolt/retimer.c   |   7 +-
 drivers/thunderbolt/switch.c    | 140 ++++++++++----
 drivers/thunderbolt/tb.c        |  30 +--
 drivers/thunderbolt/tb.h        |  45 +++--
 drivers/thunderbolt/tmu.c       |  16 +-
 drivers/thunderbolt/tunnel.c    |  85 +++++---
 drivers/thunderbolt/tunnel.h    |   9 +-
 drivers/thunderbolt/usb4.c      | 333 ++++++++++++++++++++++----------
 drivers/thunderbolt/usb4_port.c |   7 +-
 drivers/thunderbolt/xdomain.c   |  46 +++--
 include/linux/thunderbolt.h     |  25 +--
 25 files changed, 749 insertions(+), 345 deletions(-)

-- 
2.50.1


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

end of thread, other threads:[~2025-09-17  8:15 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-08 16:32 [PATCH 00/26] thunderbolt: kernel-doc fixes Mika Westerberg
2025-09-08 16:32 ` [PATCH 01/26] thunderbolt: Update acpi.c function documentation Mika Westerberg
2025-09-08 16:32 ` [PATCH 02/26] thunderbolt: Update cap.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 03/26] thunderbolt: Update clx.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 04/26] thunderbolt: Update ctl.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 05/26] thunderbolt: Add missing documentation in ctl.h tb_cfg_request struct Mika Westerberg
2025-09-08 16:32 ` [PATCH 06/26] thunderbolt: Update dma_port.c function documentation Mika Westerberg
2025-09-08 16:32 ` [PATCH 07/26] thunderbolt: Update domain.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 08/26] thunderbolt: Update eeprom.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 09/26] thunderbolt: Update lc.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 10/26] thunderbolt: Update nhi.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 11/26] thunderbolt: Add missing documentation in nhi_regs.h ring_desc structure Mika Westerberg
2025-09-08 16:32 ` [PATCH 12/26] thunderbolt: Update nvm.c function documentation Mika Westerberg
2025-09-08 16:32 ` [PATCH 13/26] thunderbolt: Update path.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 14/26] thunderbolt: Update property.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 15/26] thunderbolt: Update retimer.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 16/26] thunderbolt: Update switch.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 17/26] thunderbolt: Update tb.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 18/26] thunderbolt: Update tb.h " Mika Westerberg
2025-09-08 16:32 ` [PATCH 19/26] thunderbolt: Add missing documentation in tb.h Mika Westerberg
2025-09-08 16:32 ` [PATCH 20/26] thunderbolt: Update tmu.c function documentation Mika Westerberg
2025-09-08 16:32 ` [PATCH 21/26] thunderbolt: Update tunnel.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 22/26] thunderbolt: Update tunnel.h " Mika Westerberg
2025-09-08 16:32 ` [PATCH 23/26] thunderbolt: Update usb4.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 24/26] thunderbolt: Update usb4_port.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 25/26] thunderbolt: Update xdomain.c " Mika Westerberg
2025-09-08 16:32 ` [PATCH 26/26] thunderbolt: Update thunderbolt.h header file Mika Westerberg
2025-09-17  5:52 ` [PATCH 00/26] thunderbolt: kernel-doc fixes Mika Westerberg
2025-09-17  8:15   ` Andy Shevchenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.