From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-19.7 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 79D28C4338F for ; Sun, 25 Jul 2021 22:54:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5735660249 for ; Sun, 25 Jul 2021 22:54:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229604AbhGYWOC (ORCPT ); Sun, 25 Jul 2021 18:14:02 -0400 Received: from mail.kernel.org ([198.145.29.99]:38082 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229531AbhGYWOB (ORCPT ); Sun, 25 Jul 2021 18:14:01 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 5919C60E78; Sun, 25 Jul 2021 22:54:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1627253671; bh=6cZVzGO0OOJfnPFXMhyuWeUqYBPd2GwvRpVMpupHVu4=; h=From:To:Subject:Date:From; b=CTvbE16lgeMr+x3+qMwA8J/uHBy32kr4xkJxPgkKgNTBHMBAJoLm//EYrBFT6KYy2 R7AO0JVg+d/6CDnJTsveUL1MJm7X44QnLF20Jd2jjaO1DjDoNvC/kdgbPEp/qgU3HP sLT13v2IUwlVesUlECxVHiiU/TZ9qOCulQ7DfmnuvQd7QbQdmUV2SO7ofVg7cFYkI0 MKt52V/LdIhQr2mh/YSs1JIvqH84oSYPA0Ev/Fe1a19m73WYnd39dJwzme6W0f/OvP vwvnmA7+zl6rLJwSp/Nk6OmwTFFtFb4IzVY1hTZZTLp5u6VbBh5zFzVS7Q3x/tZ6Fz XyvKtf3SUHnVQ== Received: by pali.im (Postfix) id DBA4CAFA; Mon, 26 Jul 2021 00:54:28 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: linux-man@vger.kernel.org, Alejandro Colomar , Michael Kerrisk Subject: [PATCH] termios.3: Document missing baudrate constants Date: Mon, 26 Jul 2021 00:53:57 +0200 Message-Id: <20210725225357.7271-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-man@vger.kernel.org These baudrate macro constants are defined in bits/termios.h and are already supported. Signed-off-by: Pali Rohár --- man3/termios.3 | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/man3/termios.3 b/man3/termios.3 index 797778680fcf..01c20994424d 100644 --- a/man3/termios.3 +++ b/man3/termios.3 @@ -945,6 +945,18 @@ to by \fItermios_p\fP to \fIspeed\fP, which must be one of these constants: B57600 B115200 B230400 + B460800 + B500000 + B576000 + B921600 + B1000000 + B1152000 + B1500000 + B2000000 + B2500000 + B3000000 + B3500000 + B4000000 .ft P .fi .PP -- 2.20.1