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.4 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 8EA60C4320E for ; Mon, 30 Aug 2021 11:26:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 71D4561102 for ; Mon, 30 Aug 2021 11:26:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235387AbhH3L1e (ORCPT ); Mon, 30 Aug 2021 07:27:34 -0400 Received: from mail.kernel.org ([198.145.29.99]:58258 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232579AbhH3L1d (ORCPT ); Mon, 30 Aug 2021 07:27:33 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 3A54161102; Mon, 30 Aug 2021 11:26:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1630322800; bh=Q82nFS6sOzbiqjXZLRHyQ1X8z8oG6JS6VICZD93yVXE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=dDiTatl6dKjAs9/oVY3fjKowQjTaVpByhzeE18VnsPEGZy62+5tUhj5Luj4aXbhZM BlyTRyOhrt6aZCyBoS/No+18u5jiSVGIDxEwi8j9eIBN2Z53M2kpWF7HO7z0sg6eP0 cbL7uzYD7ubDecgEyYdHfFEueZ0tNVt92bpM4rDG/AAf+Ge6rRKeSxs4IKqpKH2diR q74y9mk8Hqb9Jp1vJl1P6a6dXZb50tZHBamJ2w/6dYfqQ2VNl3htp18e15g0dHabEQ AuXkxZiRPYsm3747ll+RJSvGAqtWz9owmo1a0RQLb2DtK2j4+vJ8mBmOUJ6LRe6Mez yMEquONhQZhQQ== Received: by pali.im (Postfix) id B85087B8; Mon, 30 Aug 2021 13:26:37 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: "Alejandro Colomar (man-pages)" Cc: linux-man@vger.kernel.org Subject: [PATCH] termios.3: Clarify zero argument for cfsetispeed() Date: Mon, 30 Aug 2021 13:25:52 +0200 Message-Id: <20210830112552.18476-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <5dc2196a-9a2a-1b2e-e6ee-3539a62aad82@gmail.com> References: <5dc2196a-9a2a-1b2e-e6ee-3539a62aad82@gmail.com> 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 Zero in this case refers to literal constant 0 and not symbolic constant B0. Signed-off-by: Pali Rohár --- man3/termios.3 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/man3/termios.3 b/man3/termios.3 index c96a5c15ec87..f888c15d754c 100644 --- a/man3/termios.3 +++ b/man3/termios.3 @@ -1017,7 +1017,11 @@ which must be specified as one of the .BI B nnn constants listed above for .BR cfsetospeed (). -If the input baud rate is set to zero, the input baud rate will be +If the input baud rate is set to literal constant +.B 0 +(not the symbolic constant +.BR B0 ), +the input baud rate will be equal to the output baud rate. .PP .BR cfsetspeed () -- 2.20.1