From nobody Thu Apr 16 08:51:30 2026 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 99A6930149F for ; Sun, 1 Mar 2026 01:47:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772329674; cv=none; b=Jzi3keDj00R35AlILXbg5sQb2A3CCtPREsoVUQ0P8mXb9d7BBHt5RCl5KY3JqzExRMRFcA82Sf5fPiqleWa2/FXVBWPOBdKKvdB35tguBZco8pLfAAumIF/XtUMnm5D920E/z+kFGAD2DKJmfmSBIKMOqVKX3Rryq1+dHTsc48w= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772329674; c=relaxed/simple; bh=pOY47Mut+/DItiV+g3+zy5pYRSlLQfiLaFCJZiDdS9g=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=JncDvndWubX8LUHO3qHaEjEqH5mkoJSIZW0rDd4zyYfR8Qw/n39arMvkiN6NN9F8WG8WoEpBg5RT6roemjI1qC1AJBOom9AQHPUXU/TF0ptt2XqycCaKuSCu2xgxiBBp2Xkz3JchL9pzhYgOO9BAAZH0tpMahVlgrfxAbFQr+7s= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=GRclrl5H; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="GRclrl5H" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=wugn4fEPHqn0baUn4mhAnTsuWIsj8X3MLXnCK9b8a34=; b=GRclrl5HAQTtZFpBueDHcvJtGx rMkbgVwIH0PbYVEBXRL2gYiUaHz03CBpJsEJwN5u1QMM6g+/cvyUA6cakiE5uvehmJPS6mCwqCxUN s8NiaXzdDEEy+vdF8NFZd8xOHN0dj/EPz2C/vQMIgAjsWYIBor7LQM2L7mmDz4u+vwA0Tu4Fo3VJm hQ2dpv3GY575UIcPQDEg1x5LoIzwC9RvbGJTfsot5qzY0Qxq5kYOq9YK5BHJgaOViWEI95ieBUx9o CyDZioeapbiNnKijMiv2iZnfK7fGGizIV5daWUXM4TYE/OMP9AAG2YSQcTf4cGHQEUkOMZQAs7ko+ FGcu1+EQ==; Received: from [50.53.43.113] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.98.2 #2 (Red Hat Linux)) id 1vwVuT-0000000AeNX-0ijp; Sun, 01 Mar 2026 01:47:53 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap Subject: [PATCH] spmi: clean up kernel-doc in spmi.h Date: Sat, 28 Feb 2026 17:47:52 -0800 Message-ID: <20260301014752.3133212-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.53.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 Content-Type: text/plain; charset="utf-8" Fix all kernel-doc warnings in spmi.h: Warning: include/linux/spmi.h:114 function parameter 'ctrl' not described in 'spmi_controller_put' Warning: include/linux/spmi.h:144 struct member 'shutdown' not described in 'spmi_driver' Signed-off-by: Randy Dunlap --- Cc: Stephen Boyd include/linux/spmi.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- linux-next-20260205.orig/include/linux/spmi.h +++ linux-next-20260205/include/linux/spmi.h @@ -109,7 +109,7 @@ struct spmi_controller *spmi_controller_ =20 /** * spmi_controller_put() - decrement controller refcount - * @ctrl SPMI controller. + * @ctrl: SPMI controller. */ static inline void spmi_controller_put(struct spmi_controller *ctrl) { @@ -129,6 +129,7 @@ int devm_spmi_controller_add(struct devi * this structure. * @probe: binds this driver to a SPMI device. * @remove: unbinds this driver from the SPMI device. + * @shutdown: shuts down this driver. * * If PM runtime support is desired for a slave, a device driver can call * pm_runtime_put() from their probe() routine (and a balancing