From nobody Wed Jun 10 21:40:11 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 30D0337D12E for ; Thu, 16 Apr 2026 22:48:35 +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=1776379716; cv=none; b=mTV51XC3rTe5Hjj1AP7P+lPJuDLkAER/wsMBxRV8mo7lcyZwglyFQ3avz+K59S7ciBzunTqrCm0bfQmKVWD+iyD6d9JAC3w+FumvVRqX7smVvLGR5Qy4e2rM9cFv3DjTxEOlMMxF87nV4l4FZuIx7/OpSOaWtZkVMZOzGav3LK0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776379716; c=relaxed/simple; bh=n5aOhmiKWyedzsQS0nHS4wFO4EHG7/iEAvAwSq/hP8s=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=fZqkXblvVG15AvO6Se5DZHTwcFl285pCCTmjuhW28ymBL+EW/kWbuTU/nhKJSVRpAc3j6oR22CU27cDUA2KhFMMeJ9RiwdfTkwTfdUOgaW3UizD7yIoBnigTbnRzQKkckt6EvfrsWZliZTXcX+xlJQq6MgWiW/f9U9wzml3LzYs= 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=lZyvip5S; 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="lZyvip5S" 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=OtVVp7gUI6GIRjMotMQw2WnrYhyPKSHjWrA61LkV/qw=; b=lZyvip5S2Qc92upp/EvsoMwz5k VrbJu4MStJWgO8HsaHo+bOW3HQrcGXm8eJnZIzlthIROlFMd2iAHmO8hCgNHZsKHGVMo2jDlIIBpq ++nl/zocuZD7mzMW/dkTB4LhJNUR2F698gTKyj/83kYsm5b4EGM1ZGoeq7xJ1Vtdi4TJILNJTli9F dEeV5MhGaUwBuLzfc+lAwirRcKa6zyrpb6yJ/B7b/5kXgHSV4hMZQcmRbIoaCGrw+D+koz9puj7TQ RDagF5uXSK5Q8QsFVWj1eP10FAzBsSktMCBgLqyKDFVq+7O/2F0HGbXsTpy8OYimtfLK86dTd7TSn jS+KeAcA==; 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 1wDVVi-000000039no-0qtq; Thu, 16 Apr 2026 22:48:34 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Stephen Boyd Subject: [PATCH v2] spmi: clean up kernel-doc in spmi.h Date: Thu, 16 Apr 2026 15:48:33 -0700 Message-ID: <20260416224833.991316-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 --- v2: change Cc: to Cc:; rebase Cc: Stephen Boyd include/linux/spmi.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- linux-next-20260415.orig/include/linux/spmi.h +++ linux-next-20260415/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