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 4DC2617592; Tue, 30 Apr 2024 11:25:33 +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=1714476333; cv=none; b=WeLjDoNh4A0hDrDkuShlVH60K1KkWQQytFWagacS0uoimiwPxVjcb1MnrrjQ/v6WlMPq5nppbkH3HGSMTD39yhvUHWShc3UNGyB4Xk5q1QJVM02BsHwFHKQv78jINwKtN2pBaKwGf+LgyWeo0xaKik1c9Y7ttqKZAgXH2Cx3wAo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714476333; c=relaxed/simple; bh=VON4CrnhYTlklndZ8oyv/DxL8x4t7Rths0DuIin/EAk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=JvIPqFwnt2n2tWKP6tAcICsNcRVKcNVUSNjI0LhI/4wxGNNp9eTwYHZuLBFgNbp1AsUAtZa2OJ3VBWJRyNANWeOSvVQmeIp5eXlsyMhqr4MUJN7CIabWIZhPMtW75rjriEdUpuVa9akv4jlm2W6/nqSvllbI14wSZB1q4HbfDOs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=OkgJwAad; 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="OkgJwAad" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C8766C2BBFC; Tue, 30 Apr 2024 11:25:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1714476333; bh=VON4CrnhYTlklndZ8oyv/DxL8x4t7Rths0DuIin/EAk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=OkgJwAaduXT09OfCRHvPWKaz4p4k8+Csi1lfnXAKGiScmO+r42DTp9mXlPwrcy0J5 eYa+2lVHPTk2flMh4K6kfXpeX1RP6y5DN5knGKbFM9FvuGepasRfC7D9KLPOadpzBn ohvv6APwqOy7meNv8hDzC6+Sx0ollsQNUygcD4Hs= 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 5.4 107/107] serial: core: fix kernel-doc for uart_port_unlock_irqrestore() Date: Tue, 30 Apr 2024 12:41:07 +0200 Message-ID: <20240430103047.815794098@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240430103044.655968143@linuxfoundation.org> References: <20240430103044.655968143@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 5.4-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 @@ -325,7 +325,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 */