From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 4C88219750D; Thu, 6 Jun 2024 14:09:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717682954; cv=none; b=H0E1aq3LiSC0zQrZAhPjpr1nB26J5upZNIYce0v6kDMh8NsAA7IPmxu2HhRVPUqz0MepsA5F/Iu4EbGCqx23p7KR2wz+Gm8sEkIb7KYZtmDZCJOeAvOkLpKofeVZp2SEJsn8S+RsKeBtd3CX11x3oyDr4bk8vwewh7NpesTlcBA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717682954; c=relaxed/simple; bh=bK7cjUiqIvpHyu0F+/vFh7gseLDVOj01+T2t6E2UN30=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Qxq9N2BvfsfTj6ISB+0CB/zIUL6Ze+xarsLjo6BDke4Tiy9iPLKiU2+XDhCZorvSjFlfKkoOYSwkwUIBlsa1Kjr354h95DpxXacvMAqpA9hvxbj6ZEFVj4pcfIyiU9PNYGiQK0dJhtCzxIKOqzrdVGz+wfnICM6KPZ+SsjKD1XE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=zSK04gjP; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="zSK04gjP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2C2B8C2BD10; Thu, 6 Jun 2024 14:09:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1717682954; bh=bK7cjUiqIvpHyu0F+/vFh7gseLDVOj01+T2t6E2UN30=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=zSK04gjPfwE9yWzALhJ2wXs+7UHT/WIFwF2270CnynHpKSKIaYVbEd965h0keJlPp 30FwyYb4MlrbDLWm0dJ6nD1SX0OxplMY/ndT0eqkfI09dKHJT+jW2Our4BFMWHWg0p p+eVUOsv83a1H6I1PirlqvJkjW9GppCdjheKrmxs= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Andy Shevchenko , Linus Walleij , Sasha Levin Subject: [PATCH 6.9 119/374] usb: fotg210: Add missing kernel doc description Date: Thu, 6 Jun 2024 16:01:38 +0200 Message-ID: <20240606131655.909741834@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240606131651.683718371@linuxfoundation.org> References: <20240606131651.683718371@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Andy Shevchenko [ Upstream commit 4b653e82ae18f2dc91c7132b54f5785c4d56bab4 ] kernel-doc validator is not happy: warning: Function parameter or struct member 'fotg' not described in 'fotg210_vbus' Add missing description. Fixes: 3e679bde529e ("usb: fotg210-udc: Implement VBUS session") Signed-off-by: Andy Shevchenko Reviewed-by: Linus Walleij Link: https://lore.kernel.org/r/20240510152641.2421298-1-andriy.shevchenko@linux.intel.com Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin --- drivers/usb/fotg210/fotg210-core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/fotg210/fotg210-core.c b/drivers/usb/fotg210/fotg210-core.c index 958fc40eae86b..0655afe7f9779 100644 --- a/drivers/usb/fotg210/fotg210-core.c +++ b/drivers/usb/fotg210/fotg210-core.c @@ -95,6 +95,7 @@ static int fotg210_gemini_init(struct fotg210 *fotg, struct resource *res, /** * fotg210_vbus() - Called by gadget driver to enable/disable VBUS + * @fotg: pointer to a private fotg210 object * @enable: true to enable VBUS, false to disable VBUS */ void fotg210_vbus(struct fotg210 *fotg, bool enable) -- 2.43.0