mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] ice: dpll: fix kernel-doc parameter descriptions
@ 2026-09-24 23:21 Ayush Yaduvanshi
  2026-09-25  7:39 ` Loktionov, Aleksandr
  2026-09-26  1:50 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Ayush Yaduvanshi @ 2026-09-24 23:21 UTC (permalink / raw)
  To: Tony Nguyen, Przemek Kitszel
  Cc: intel-wired-lan, netdev, linux-kernel, Andrew Lunn,
	David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Shuah Khan, Jori Koolstra, Brigham Campbell,
	linux-kernel-mentees, Ayush Yaduvanshi

Remove stale @count and @cgu parameter descriptions from
ice_dpll_init_fwnode_pins() and ice_dpll_init_pins_e825().

Signed-off-by: Ayush Yaduvanshi <ayush37735@gmail.com>
---
 drivers/net/ethernet/intel/ice/ice_dpll.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/net/ethernet/intel/ice/ice_dpll.c b/drivers/net/ethernet/intel/ice/ice_dpll.c
index 85a74cd6ea1f..d00a2fb683d1 100644
--- a/drivers/net/ethernet/intel/ice/ice_dpll.c
+++ b/drivers/net/ethernet/intel/ice/ice_dpll.c
@@ -3919,7 +3919,6 @@ ice_dpll_init_fwnode_pin(struct ice_dpll_pin *pin, const char *name)
  * @pf: board private structure
  * @pins: pointer to pins array
  * @start_idx: starting index for pins
- * @count: number of pins to initialize
  *
  * Initialize input pins for E825 RCLK support. The parent pins (rclk0, rclk1)
  * are expected to be defined by the system firmware (ACPI). This function
@@ -4025,7 +4024,6 @@ static int ice_dpll_init_txclk_pins(struct ice_pf *pf, int start_idx)
 /**
  * ice_dpll_init_pins_e825 - init pins and register pins with a dplls
  * @pf: board private structure
- * @cgu: if cgu is present and controlled by this NIC
  *
  * Initialize directly connected pf's pins within pf's dplls in a Linux dpll
  * subsystem.
-- 
2.53.0


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

* RE: [PATCH] ice: dpll: fix kernel-doc parameter descriptions
  2026-09-24 23:21 [PATCH] ice: dpll: fix kernel-doc parameter descriptions Ayush Yaduvanshi
@ 2026-09-25  7:39 ` Loktionov, Aleksandr
  2026-09-26  1:50 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Loktionov, Aleksandr @ 2026-09-25  7:39 UTC (permalink / raw)
  To: Ayush Yaduvanshi, Nguyen, Anthony L, Kitszel, Przemyslaw
  Cc: intel-wired-lan, netdev, linux-kernel, Andrew Lunn,
	David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Shuah Khan, Jori Koolstra, Brigham Campbell,
	linux-kernel-mentees



> -----Original Message-----
> From: Ayush Yaduvanshi <ayush37735@gmail.com>
> Sent: Friday, September 25, 2026 1:22 AM
> To: Nguyen, Anthony L <anthony.l.nguyen@intel.com>; Kitszel,
> Przemyslaw <przemyslaw.kitszel@intel.com>
> Cc: intel-wired-lan@lists.osuosl.org; netdev@vger.kernel.org; linux-
> kernel@vger.kernel.org; Andrew Lunn <andrew+netdev@lunn.ch>; David S .
> Miller <davem@davemloft.net>; Eric Dumazet <edumazet@google.com>;
> Jakub Kicinski <kuba@kernel.org>; Paolo Abeni <pabeni@redhat.com>;
> Shuah Khan <skhan@linuxfoundation.org>; Jori Koolstra
> <jkoolstra@xs4all.nl>; Brigham Campbell <me@brighamcampbell.com>;
> linux-kernel-mentees@lists.linux.dev; Ayush Yaduvanshi
> <ayush37735@gmail.com>
> Subject: [PATCH] ice: dpll: fix kernel-doc parameter descriptions
> 
> Remove stale @count and @cgu parameter descriptions from
> ice_dpll_init_fwnode_pins() and ice_dpll_init_pins_e825().
> 
> Signed-off-by: Ayush Yaduvanshi <ayush37735@gmail.com>
> ---
>  drivers/net/ethernet/intel/ice/ice_dpll.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/drivers/net/ethernet/intel/ice/ice_dpll.c
> b/drivers/net/ethernet/intel/ice/ice_dpll.c
> index 85a74cd6ea1f..d00a2fb683d1 100644
> --- a/drivers/net/ethernet/intel/ice/ice_dpll.c
> +++ b/drivers/net/ethernet/intel/ice/ice_dpll.c
> @@ -3919,7 +3919,6 @@ ice_dpll_init_fwnode_pin(struct ice_dpll_pin
> *pin, const char *name)
>   * @pf: board private structure
>   * @pins: pointer to pins array
>   * @start_idx: starting index for pins
> - * @count: number of pins to initialize
>   *
>   * Initialize input pins for E825 RCLK support. The parent pins
> (rclk0, rclk1)
>   * are expected to be defined by the system firmware (ACPI). This
> function @@ -4025,7 +4024,6 @@ static int
> ice_dpll_init_txclk_pins(struct ice_pf *pf, int start_idx)
>  /**
>   * ice_dpll_init_pins_e825 - init pins and register pins with a dplls
>   * @pf: board private structure
> - * @cgu: if cgu is present and controlled by this NIC
>   *
>   * Initialize directly connected pf's pins within pf's dplls in a
> Linux dpll
>   * subsystem.
> --
> 2.53.0

Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>

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

* Re: [PATCH] ice: dpll: fix kernel-doc parameter descriptions
  2026-09-24 23:21 [PATCH] ice: dpll: fix kernel-doc parameter descriptions Ayush Yaduvanshi
  2026-09-25  7:39 ` Loktionov, Aleksandr
@ 2026-09-26  1:50 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-09-26  1:50 UTC (permalink / raw)
  To: Ayush Yaduvanshi
  Cc: anthony.l.nguyen, przemyslaw.kitszel, intel-wired-lan, netdev,
	linux-kernel, andrew+netdev, davem, edumazet, kuba, pabeni,
	skhan, jkoolstra, me, linux-kernel-mentees

Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Fri, 25 Sep 2026 04:51:38 +0530 you wrote:
> Remove stale @count and @cgu parameter descriptions from
> ice_dpll_init_fwnode_pins() and ice_dpll_init_pins_e825().
> 
> Signed-off-by: Ayush Yaduvanshi <ayush37735@gmail.com>
> ---
>  drivers/net/ethernet/intel/ice/ice_dpll.c | 2 --
>  1 file changed, 2 deletions(-)

Here is the summary with links:
  - ice: dpll: fix kernel-doc parameter descriptions
    https://git.kernel.org/netdev/net-next/c/a72690652227

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-24 23:21 [PATCH] ice: dpll: fix kernel-doc parameter descriptions Ayush Yaduvanshi
2026-09-25  7:39 ` Loktionov, Aleksandr
2026-09-26  1:50 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®