From nobody Mon Jun 15 23:17:13 2026 Received: from smtpout-04.galae.net (smtpout-04.galae.net [185.171.202.116]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 064AE3909A6 for ; Tue, 14 Apr 2026 15:10:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.171.202.116 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776179417; cv=none; b=NyP6DtnjRmplxvFbMkCHumJV/ISRBGPt6D12vz9URvqZaS2Mxk3RvvnP9Jv89tbj5KhLkuxHYFTD7UrsOAO0jX1YNGL1BiVb1SRF7mhzLWlO0u1FrINVSda46Mr3FWssBNyOHarrSlWXpjiuBpmO9rsgikFr9Wa8ta8DIo4l3GY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776179417; c=relaxed/simple; bh=ggSETvh3icY+/hTcESIbhOhiBOa8twMOPdmNAZhTfug=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=pXydsBuD4kYBodlfMnPhUXpro3NX6BPjRLfpFaqAncA6EToxtPziNd0NyTUKcvuhWoHOZcbsuLovCha84LY2Kk8wYx4bDP0SVpThyISg4GMh/p/hdOvTwWdLevPikeHKvqwKMalD9TcffBn7e3B9pu/ifCYTuqpcvfuApeU6csY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=BpVOeRsV; arc=none smtp.client-ip=185.171.202.116 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="BpVOeRsV" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-04.galae.net (Postfix) with ESMTPS id D6182C5AAAF; Tue, 14 Apr 2026 15:10:48 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id A001D60410; Tue, 14 Apr 2026 15:10:11 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id B50DD1045127E; Tue, 14 Apr 2026 17:10:07 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1776179411; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding; bh=pmPEtSYTgH4yoR0eNuKm5NDfBKW6he0d8HChYODJoRQ=; b=BpVOeRsVC1RUDrWcNqxrQSLxRdujaoVjZIVmnhvJos1Rn4j0jW8pogg272Bb7fy7WG1phV nGd3CBNdZZwF4cyQFu3HAqjcIFmvd7uzzMYRSv7pO9mPsEGVsiQ6dA54PbKUWXnsjLZZix WfokWFcvDECE5CaGVfio5/Bty+Z1jVlSu48s2bYs8rLhFa0STt0NLH3BhpXz5tVwc2ZH1O 7hL8qMTvOUbO0mLdDnUcPBBIwrOYgyuLOnru1/aWdjnM3ETbTCtZFk6n1d4HFyuoC6LMt5 j2ZaKB3zLuhIdSHYLlJuF+C7KH58gm1NThFdXLPHTNA2N8DcSp058cJC3DNUvw== From: Kory Maincent To: "Kory Maincent (Dent Project)" , Jakub Kicinski , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Cc: thomas.petazzoni@bootlin.com, Oleksij Rempel , Andrew Lunn , "David S. Miller" , Eric Dumazet , Paolo Abeni Subject: [PATCH net] net: pse-pd: fix kernel-doc function name for pse_control_find_by_id() Date: Tue, 14 Apr 2026 17:09:47 +0200 Message-ID: <20260414150948.744618-1-kory.maincent@bootlin.com> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Last-TLS-Session-Version: TLSv1.3 Content-Type: text/plain; charset="utf-8" The kernel-doc comment header incorrectly referenced the function name pse_control_find_net_by_id() instead of the actual function name pse_control_find_by_id(). Correct the function name in the documentation to match the implementation. Fixes: fc0e6db30941a ("net: pse-pd: Add support for reporting events") Signed-off-by: Kory Maincent Reviewed-by: Andrew Lunn --- drivers/net/pse-pd/pse_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/pse-pd/pse_core.c b/drivers/net/pse-pd/pse_core.c index 2ced837f375d2..0848097ce7bf3 100644 --- a/drivers/net/pse-pd/pse_core.c +++ b/drivers/net/pse-pd/pse_core.c @@ -234,7 +234,7 @@ static int of_load_pse_pis(struct pse_controller_dev *p= cdev) } =20 /** - * pse_control_find_net_by_id - Find net attached to the pse control id + * pse_control_find_by_id - Find pse_control from an id * @pcdev: a pointer to the PSE * @id: index of the PSE control * --=20 2.43.0