From nobody Fri Feb 13 06:06:26 2026 Received: from out30-119.freemail.mail.aliyun.com (out30-119.freemail.mail.aliyun.com [115.124.30.119]) (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 1B5494779E for ; Fri, 31 May 2024 07:21:28 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.119 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717140091; cv=none; b=VdN97TYNM+MgbtY1Sh2UBP4gKoI54FWM09gJdsAyUmPNoldsVf8ja2yXswQuD/HpMFC/PlzJ7Ktra7WqHFHHBMiIZKoLWhRxL/xLaYsX7G1+4S9RFNPxkYmyuF2OIqnwh1PLcMhSzz3beAht7olyIkWT70cMFSzj824Xay3/H0U= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717140091; c=relaxed/simple; bh=LDE8YRBxlSxOgZ6jcZUK+SvtohVTgLX/oJvE1MKf410=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=m40q4zUmB5sJfcAcaoMSE1PW/EOFiMO0vEjGAUDOfUYWNQy8ahgnTarc03S9GBiu6OBiF5cOl6ybnThBbtpOPg2N5aPQwf8ElTJPmmk049X8TvDP4WjLk8pB6RX0+8pib5cjjgMdvZJ5RhNk/5YHpwAhwauLc4NyjbIwvqA6dKU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=CbhylTno; arc=none smtp.client-ip=115.124.30.119 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="CbhylTno" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1717140086; h=From:To:Subject:Date:Message-Id:MIME-Version; bh=K5oeXEXSVyaAY2t3+I789HO5yOIeItkWYp4h2MgBgf4=; b=CbhylTnozX6o5a8Qm1YqsgviQm7K0oUMtz/63omUsFLG0iH9KfkqdNTj6xyOlfUMRWylH4mMK0Ec+1fHuxDB03NyL71yEiHZ+UKKtDl53jM8I3msSWv9HgmHJpF0np+XymDl3YLKichxnop7BuYdD/43thXzYUku42VMgqJxMfY= X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R111e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=maildocker-contentspam033037067111;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=6;SR=0;TI=SMTPD_---0W7ZAtHt_1717140085; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0W7ZAtHt_1717140085) by smtp.aliyun-inc.com; Fri, 31 May 2024 15:21:26 +0800 From: Yang Li To: jdmason@kudzu.us, dave.jiang@intel.com, allenbh@gmail.com Cc: ntb@lists.linux.dev, linux-kernel@vger.kernel.org, Yang Li Subject: [PATCH -next] ntb: Fix kernel-doc param for ntb_transport_create_queue Date: Fri, 31 May 2024 15:21:24 +0800 Message-Id: <20240531072124.64352-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c 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 Content-Type: text/plain; charset="utf-8" The patch updates the function documentation comment for ntb_transport_create_queue to adhere to the kernel-doc specification. Signed-off-by: Yang Li Reviewed-by: Dave Jiang --- drivers/ntb/ntb_transport.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/ntb/ntb_transport.c b/drivers/ntb/ntb_transport.c index f9e7847a378e..5d466a3f117b 100644 --- a/drivers/ntb/ntb_transport.c +++ b/drivers/ntb/ntb_transport.c @@ -1966,9 +1966,10 @@ static bool ntb_dma_filter_fn(struct dma_chan *chan,= void *node) =20 /** * ntb_transport_create_queue - Create a new NTB transport layer queue - * @rx_handler: receive callback function - * @tx_handler: transmit callback function - * @event_handler: event callback function + * @data: user-defined data to associate with the queue + * @client_dev: the device structure of the NTB client + * @handlers: structure containing receive, transmit, and event callback + * functions * * Create a new NTB transport layer queue and provide the queue with a cal= lback * routine for both transmit and receive. The receive callback routine wi= ll be --=20 2.20.1.7.g153144c