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 CC9121A3029; Tue, 21 Oct 2025 20:11:28 +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=1761077488; cv=none; b=skrjxHCpjvUMuIUhmznmTDk/mEj1t97J2iRWeBi9qpxf/bWLSIUX7DFcnxWkrfFWBhtFTWeMbKr3GXReQG2NNadPqgZGiOkystuHtmj1pf/8v118U5NXeN0Aif1ee8BRHkyDfxdMs6v+Fh1SZ8zRnKjleobItXwHsY3x4ZVbhio= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761077488; c=relaxed/simple; bh=ycLlD/dXx/rc64adJOo0wZt+IXQDn1j5Zwrn2h3kgek=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=EA1BBTKw6j0MKR9wuySgnd1wFdwsuY3/pbIhxlr1rRNgdOniHfB55m/zGTP+LxfO4IRDcs4I2jgTYZg8JSHs7PQ8WmvcKqbf2gO5xNyqmfW1FY+UVB0mGAmMRqHXeLaj0g0Rkp4cV0utSTA1wL8PWavxOV/IEKoDdodEzFhlmIQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=oo93vjzY; 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="oo93vjzY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F2CCCC4CEF5; Tue, 21 Oct 2025 20:11:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1761077488; bh=ycLlD/dXx/rc64adJOo0wZt+IXQDn1j5Zwrn2h3kgek=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oo93vjzY/lzbdngx/78DaWS58zGaXg6AYs2kcDG9VeU985qGjI41ybISzqw5nqu/O 07VVV9/6bCWrFgHqqHoUQPp/QCiHi9kfUte/vc8AC0wfPahGiqNpL4rqJlGwIHkosz F210v69sr2F75RY+fAETmGEOBWMYmR3Scw18XcJk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Randy Dunlap , Takashi Sakamoto , Takashi Iwai , Sasha Levin Subject: [PATCH 6.17 120/159] ALSA: firewire: amdtp-stream: fix enum kernel-doc warnings Date: Tue, 21 Oct 2025 21:51:37 +0200 Message-ID: <20251021195046.045222171@linuxfoundation.org> X-Mailer: git-send-email 2.51.1 In-Reply-To: <20251021195043.182511864@linuxfoundation.org> References: <20251021195043.182511864@linuxfoundation.org> User-Agent: quilt/0.69 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.17-stable review patch. If anyone has any objections, please let me know. ------------------ From: Randy Dunlap [ Upstream commit d41f68dff783d181a8fd462e612bda0fbab7f735 ] Fix spelling of CIP_NO_HEADER to prevent a kernel-doc warning. Warning: amdtp-stream.h:57 Enum value 'CIP_NO_HEADER' not described in enum 'cip_flags' Warning: amdtp-stream.h:57 Excess enum value '%CIP_NO_HEADERS' description in 'cip_flags' Fixes: 3b196c394dd9f ("ALSA: firewire-lib: add no-header packet processing") Signed-off-by: Randy Dunlap Reviewed-by: Takashi Sakamoto Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- sound/firewire/amdtp-stream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/firewire/amdtp-stream.h b/sound/firewire/amdtp-stream.h index 775db3fc4959f..ec10270c2cce3 100644 --- a/sound/firewire/amdtp-stream.h +++ b/sound/firewire/amdtp-stream.h @@ -32,7 +32,7 @@ * allows 5 times as large as IEC 61883-6 defines. * @CIP_HEADER_WITHOUT_EOH: Only for in-stream. CIP Header doesn't include * valid EOH. - * @CIP_NO_HEADERS: a lack of headers in packets + * @CIP_NO_HEADER: a lack of headers in packets * @CIP_UNALIGHED_DBC: Only for in-stream. The value of dbc is not alighed to * the value of current SYT_INTERVAL; e.g. initial value is not zero. * @CIP_UNAWARE_SYT: For outgoing packet, the value in SYT field of CIP is 0xffff. -- 2.51.0