From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 20C16429025 for ; Wed, 19 Aug 2026 13:39:40 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787146782; cv=none; b=hTfDvui1Ytti0UVtvL+0mcHLDtOZqOO51BIu3YB/zs/8Nx6Tcz6g6BJzj6ruszuHk19X+425dBbQntJGvqVE6ZAEttXtBXqsGRqt21iSBYm2doLKONv6msUqfDL9mk8ohVATYMFjn4GUxTwfG9k/HuSVbsV1WPD6s88ZngLH96E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787146782; c=relaxed/simple; bh=IXchPVOiz4Jg/xf1gXki3oQJGBueb44brnNPoYvH8vk=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Qy2p3UpO/1/k4EFAus/XmXjDb2D3XLTPqqDggqPu4ZUZrEnsrO3PvyqUmGP1Mr8+okqzHyV2700h/RMyaJbMbZvHJkuntbttWWW1nSWqUhbCiMBVJU7X3WezA5z/J5xl/khKiwyiVpE/+fI2OlYuMvO6m/xtcoEX7RRU1DaLoV4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=NSWwmSne; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="NSWwmSne" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AAD0B1F00A3A; Wed, 19 Aug 2026 13:39:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1787146780; bh=qVWLNAINB4Hk3Yv3PTzU2xj31jkzltRWDxbUrX8pNGo=; h=From:To:Cc:Subject:Date; b=NSWwmSne5NXFDn7weJ1Ot7Q4FUUarLuQmVCQSkK/pMuKYRrO8MQQHKPXu8NguEbwU nCQYOci+FMmP+wQfM+C2CyTiXDUpAfFU5hm9CnU2Qfy2KvgfRvBCUfUG7sx4kixin0 9U9bdUPwy8/fwDYNfE9Lbr4Ef/n9obKoPET5F74IKeIDh01Y+HGT4fSKMfib+AC+bc TlQXsSAuH+pv5LnVXTPlb0LlnoTYdbZcC84tCCc+V0lfA1a8BL2s0cccRMQ4lm/whF 9D42DyRO0a6smM+JH4DSswfj+1wGLffag/pkTeB4YWuZhXgZ2MipSpwMimSn0fRcBV NLFEdqKbh+rBA== Received: from johan by xi.lan with local (Exim 4.99.4) (envelope-from ) id 1wwgW2-00000001CaH-0AVC; Wed, 19 Aug 2026 15:39:38 +0200 From: Johan Hovold To: Greg Kroah-Hartman Cc: Petr Mladek , John Ogness , Thomas Gleixner , linux-kernel@vger.kernel.org, Johan Hovold Subject: [PATCH] console: fix /dev/kmsg reference in flags kernel doc Date: Wed, 19 Aug 2026 15:38:53 +0200 Message-ID: <20260819133853.286658-1-johan@kernel.org> X-Mailer: git-send-email 2.54.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Fix typo in the CON_EXTENDED flag kernel doc which is supposed to refer to '/dev/kmsg'. Fixes: 717a5651b109 ("console: Use BIT() macros for @flags values") Signed-off-by: Johan Hovold --- include/linux/console.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/console.h b/include/linux/console.h index d624200cfc17..502d1abe3f50 100644 --- a/include/linux/console.h +++ b/include/linux/console.h @@ -173,7 +173,7 @@ static inline void con_debug_leave(void) { } * @CON_BRL: Indicates a braille device which is exempt from * receiving the printk spam for obvious reasons. * @CON_EXTENDED: The console supports the extended output format of - * /dev/kmesg which requires a larger output buffer. + * /dev/kmsg which requires a larger output buffer. * @CON_SUSPENDED: Indicates if a console is suspended. If true, the * printing callbacks must not be called. * @CON_NBCON: Console can operate outside of the legacy style console_lock -- 2.54.0