All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ath9k-common: fix kernel-doc warnings in common-debug.h
@ 2025-11-17  2:02 Randy Dunlap
  2025-11-17 11:35 ` Toke Høiland-Jørgensen
  2026-01-16  1:26 ` Jeff Johnson
  0 siblings, 2 replies; 3+ messages in thread
From: Randy Dunlap @ 2025-11-17  2:02 UTC (permalink / raw)
  To: netdev
  Cc: Randy Dunlap, Toke Høiland-Jørgensen, Johannes Berg,
	linux-wireless

Modify kernel-doc comments in common-debug.h to avoid warnings:

Warning: drivers/net/wireless/ath/ath9k/common-debug.h:21 bad line:
  may have had errors.
Warning: ../drivers/net/wireless/ath/ath9k/common-debug.h:23 bad line:
  may have had errors.
Warning: ../drivers/net/wireless/ath/ath9k/common-debug.h:26 bad line:
  decryption process completed
Warning: ../drivers/net/wireless/ath/ath9k/common-debug.h:28 bad line:
  encountered an error

Fixes: 99c15bf575b1 ("ath9k: Report total tx/rx bytes and packets in debugfs.")
Fixes: 1395d3f00a41 ("ath9k: Add debugfs file for RX errors") (last 2)
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
---
Cc: Toke Høiland-Jørgensen <toke@toke.dk>
Cc: Johannes Berg <johannes@sipsolutions.net>
Cc: linux-wireless@vger.kernel.org
---
 drivers/net/wireless/ath/ath9k/common-debug.h |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

--- linux-next-20251107.orig/drivers/net/wireless/ath/ath9k/common-debug.h
+++ linux-next-20251107/drivers/net/wireless/ath/ath9k/common-debug.h
@@ -19,14 +19,14 @@
 /**
  * struct ath_rx_stats - RX Statistics
  * @rx_pkts_all:  No. of total frames received, including ones that
-	may have had errors.
+ *	may have had errors.
  * @rx_bytes_all:  No. of total bytes received, including ones that
-	may have had errors.
+ *	may have had errors.
  * @crc_err: No. of frames with incorrect CRC value
  * @decrypt_crc_err: No. of frames whose CRC check failed after
-	decryption process completed
+ *	decryption process completed
  * @phy_err: No. of frames whose reception failed because the PHY
-	encountered an error
+ *	encountered an error
  * @mic_err: No. of frames with incorrect TKIP MIC verification failure
  * @pre_delim_crc_err: Pre-Frame delimiter CRC error detections
  * @post_delim_crc_err: Post-Frame delimiter CRC error detections

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

* Re: [PATCH] ath9k-common: fix kernel-doc warnings in common-debug.h
  2025-11-17  2:02 [PATCH] ath9k-common: fix kernel-doc warnings in common-debug.h Randy Dunlap
@ 2025-11-17 11:35 ` Toke Høiland-Jørgensen
  2026-01-16  1:26 ` Jeff Johnson
  1 sibling, 0 replies; 3+ messages in thread
From: Toke Høiland-Jørgensen @ 2025-11-17 11:35 UTC (permalink / raw)
  To: Randy Dunlap, netdev; +Cc: Randy Dunlap, Johannes Berg, linux-wireless

Randy Dunlap <rdunlap@infradead.org> writes:

> Modify kernel-doc comments in common-debug.h to avoid warnings:
>
> Warning: drivers/net/wireless/ath/ath9k/common-debug.h:21 bad line:
>   may have had errors.
> Warning: ../drivers/net/wireless/ath/ath9k/common-debug.h:23 bad line:
>   may have had errors.
> Warning: ../drivers/net/wireless/ath/ath9k/common-debug.h:26 bad line:
>   decryption process completed
> Warning: ../drivers/net/wireless/ath/ath9k/common-debug.h:28 bad line:
>   encountered an error
>
> Fixes: 99c15bf575b1 ("ath9k: Report total tx/rx bytes and packets in debugfs.")
> Fixes: 1395d3f00a41 ("ath9k: Add debugfs file for RX errors") (last 2)
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>

Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>

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

* Re: [PATCH] ath9k-common: fix kernel-doc warnings in common-debug.h
  2025-11-17  2:02 [PATCH] ath9k-common: fix kernel-doc warnings in common-debug.h Randy Dunlap
  2025-11-17 11:35 ` Toke Høiland-Jørgensen
@ 2026-01-16  1:26 ` Jeff Johnson
  1 sibling, 0 replies; 3+ messages in thread
From: Jeff Johnson @ 2026-01-16  1:26 UTC (permalink / raw)
  To: netdev, Randy Dunlap
  Cc: Toke Høiland-Jørgensen, Johannes Berg, linux-wireless


On Sun, 16 Nov 2025 18:02:50 -0800, Randy Dunlap wrote:
> Modify kernel-doc comments in common-debug.h to avoid warnings:
> 
> Warning: drivers/net/wireless/ath/ath9k/common-debug.h:21 bad line:
>   may have had errors.
> Warning: ../drivers/net/wireless/ath/ath9k/common-debug.h:23 bad line:
>   may have had errors.
> Warning: ../drivers/net/wireless/ath/ath9k/common-debug.h:26 bad line:
>   decryption process completed
> Warning: ../drivers/net/wireless/ath/ath9k/common-debug.h:28 bad line:
>   encountered an error
> 
> [...]

Applied, thanks!

[1/1] ath9k-common: fix kernel-doc warnings in common-debug.h
      commit: b9909c19965dc9e5a3a898fef09b437fcc3a9494

Best regards,
-- 
Jeff Johnson <jeff.johnson@oss.qualcomm.com>


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

end of thread, other threads:[~2026-01-16  1:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-17  2:02 [PATCH] ath9k-common: fix kernel-doc warnings in common-debug.h Randy Dunlap
2025-11-17 11:35 ` Toke Høiland-Jørgensen
2026-01-16  1:26 ` Jeff Johnson

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.