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=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, 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 B966AC3B1A6 for ; Fri, 14 Feb 2020 17:15:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 87C18206CC for ; Fri, 14 Feb 2020 17:15:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1581700557; bh=b0YSzZRWUKq9mg7LdPdfWvKl3hH+WkP5p+RyeBalyWM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=W/inRFF9uKokrwc43XNuAmIl1t9rG4Bkg6gKQ1uYX0UKVIiTsqq/CF8JsiVVswomX RKKRZ/4Q4Ftqp88beOcx9D2IrHwU60DW2qP/C5YQ9jOwAhTd6A/OVr6n4257ivhPkw /PUUTs7uviFteuPsAs7Px1aVp5ODUkl2MuE450ZM= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387539AbgBNQMD (ORCPT ); Fri, 14 Feb 2020 11:12:03 -0500 Received: from mail.kernel.org ([198.145.29.99]:36432 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2390473AbgBNQKx (ORCPT ); Fri, 14 Feb 2020 11:10:53 -0500 Received: from sasha-vm.mshome.net (c-73-47-72-35.hsd1.nh.comcast.net [73.47.72.35]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id E248E246A5; Fri, 14 Feb 2020 16:10:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1581696649; bh=b0YSzZRWUKq9mg7LdPdfWvKl3hH+WkP5p+RyeBalyWM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GlvsutHR6HiDpeDBI4WgsmZqmFIKF5eUlFMinlC/3NycuXt+5X0iJ/r7qqLAZygnP TNjjV8uoaFt8XmrKRvrwNtbXVnGxAL61xqVvi9qFphKPuxx1hNm1pWsyeBR03+ASR3 fVqr309uQarQOpRX5+3Q2sjL0pfvJLrvXYmZtt4k= From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Luca Ceresoli , Jean Delvare , Wolfram Sang , Sasha Levin , linux-i2c@vger.kernel.org Subject: [PATCH AUTOSEL 5.4 425/459] docs: i2c: writing-clients: properly name the stop condition Date: Fri, 14 Feb 2020 11:01:15 -0500 Message-Id: <20200214160149.11681-425-sashal@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200214160149.11681-1-sashal@kernel.org> References: <20200214160149.11681-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Luca Ceresoli [ Upstream commit 4fcb445ec688a62da9c864ab05a4bd39b0307cdc ] In I2C there is no such thing as a "stop bit". Use the proper naming: "stop condition". Signed-off-by: Luca Ceresoli Reported-by: Jean Delvare Reviewed-by: Jean Delvare Signed-off-by: Wolfram Sang Signed-off-by: Sasha Levin --- Documentation/i2c/writing-clients.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/i2c/writing-clients.rst b/Documentation/i2c/writing-clients.rst index dddf0a14ab7cb..6e8d4737fc190 100644 --- a/Documentation/i2c/writing-clients.rst +++ b/Documentation/i2c/writing-clients.rst @@ -357,9 +357,9 @@ read/written. This sends a series of messages. Each message can be a read or write, and they can be mixed in any way. The transactions are combined: no -stop bit is sent between transaction. The i2c_msg structure contains -for each message the client address, the number of bytes of the message -and the message data itself. +stop condition is issued between transaction. The i2c_msg structure +contains for each message the client address, the number of bytes of the +message and the message data itself. You can read the file ``i2c-protocol`` for more information about the actual I2C protocol. -- 2.20.1