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 4957015AAD4; Mon, 29 Jan 2024 17:13:26 +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=1706548406; cv=none; b=Dt6cWKGWGv0Bz5/LbONj92BwwFz6x4wtdZeJNzz6VCl8nXPGsrqwJe1DJHrcqcsesMuj1yxpsrWA0mHRDO/ABHgrR6JkaYCivlzmsppvdMJMqNCBMu6HxULD2AV5lCDv6lJfiv8fnSkdU2mJp8K94CW0MEDSkFPS7d8074OxIkc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706548406; c=relaxed/simple; bh=7e3N5DPfHPvV6+tt33hTzbMGYZp9qo21S3nzaUHlU6c=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=haMWS3Q1ui9H12Pxi/3b7o0kyxNQUHgwqKyLVG+Vy+9b9o9rfQB6MVi8MkufYiL/XznWgdw11cLcQ2qPE0DutAwNgTKWaMA/A8k5YxwceCzU1E9ge/8tpJ8CFlFvX/BHTAAU2plcxuh3x8W28HsiuqS3jQEvSZuNFrewjD6hK/w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=IoM9DKAd; 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="IoM9DKAd" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0E6F2C433F1; Mon, 29 Jan 2024 17:13:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1706548406; bh=7e3N5DPfHPvV6+tt33hTzbMGYZp9qo21S3nzaUHlU6c=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=IoM9DKAdoJMwBde+ybxlgIz7NhTFVAkHO9lJp14vISLrW7+Y0hBci1CHcpdeQzr1H cJzh9uvfYjo3IpmYaXIsrcswF7LHYvfOQ2XOFTQMv8rBImhConUcpcCHX2FqGlx/3e qYt6CQz/DgZU484zAmDJgVUrk4ZU+qIizPvffkdQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Randy Dunlap , Thomas Gleixner , John Ogness , linux-serial@vger.kernel.org, Jiri Slaby Subject: [PATCH 6.1 185/185] serial: core: fix kernel-doc for uart_port_unlock_irqrestore() Date: Mon, 29 Jan 2024 09:06:25 -0800 Message-ID: <20240129170004.526571865@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240129165958.589924174@linuxfoundation.org> References: <20240129165958.589924174@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: linux-serial@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Randy Dunlap commit 29bff582b74ed0bdb7e6986482ad9e6799ea4d2f upstream. Fix the function name to avoid a kernel-doc warning: include/linux/serial_core.h:666: warning: expecting prototype for uart_port_lock_irqrestore(). Prototype was for uart_port_unlock_irqrestore() instead Fixes: b0af4bcb4946 ("serial: core: Provide port lock wrappers") Signed-off-by: Randy Dunlap Cc: Thomas Gleixner Cc: John Ogness Cc: linux-serial@vger.kernel.org Cc: Greg Kroah-Hartman Cc: Jiri Slaby Reviewed-by: John Ogness Link: https://lore.kernel.org/r/20230927044128.4748-1-rdunlap@infradead.org Signed-off-by: Greg Kroah-Hartman --- include/linux/serial_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h @@ -653,7 +653,7 @@ static inline void uart_port_unlock_irq( } /** - * uart_port_lock_irqrestore - Unlock the UART port, restore interrupts + * uart_port_unlock_irqrestore - Unlock the UART port, restore interrupts * @up: Pointer to UART port structure * @flags: The saved interrupt flags for restore */