Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp1814677imu; Thu, 17 Jan 2019 03:47:19 -0800 (PST) X-Google-Smtp-Source: ALg8bN58/03e2H1iYsPN5OscC+fY/TzIuTxntOzmf30FO7jNIONeHlyIVMsaM0qY6Nt6hD/J9Ifo X-Received: by 2002:a62:36c1:: with SMTP id d184mr14715610pfa.242.1547725639076; Thu, 17 Jan 2019 03:47:19 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1547725639; cv=none; d=google.com; s=arc-20160816; b=QlV0LyczZ3OKMZxSRXLeeJ8Rw9nbYcKpleCRL04oKOgYpiqZLVWk13gKwtYsX9LCYB c7bUJP/O6wGLbkES6LOxVDQHxe8JG59YTW06lxHALWDwMwQkzrcSo9wuKyXo3Ve/KTzB BQbl/06H+DOI0nD37xFPQkP/pDhF+Ttt0hQtSR+NKi6e3RBgu5S6tgCMRuUEsCXMKZvG gFFqCWUTIrMd4a8EJ1tW+ziDSYZEzIXVK4KLnllivoIGoT5GY69dKer+PlwJwy8bnW3a Iih11WI0bPYUIblEHcZjCHBAtJFKBLpgaL7lgaHpAZTn3OhuZy3gWig7T3W2OuveCT+b o1+Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=qrHgN3GyJw6BWf9tkNQE7wrrwQEjgPD/TngGc0DtGFY=; b=dD7vyNCe0QQNcjTSYJsOBWT+XYFQdP6Wei5FSdoRFvwUFI1Xro6MjCr5tK0z4UtiMB JKWAezZoypCbmcLgs/OgVkH+Kig9A6D58Kk6zmrDWZI6gwmrQ+fBwodwDRuZZUZjIYKJ Py/Um/LFeOU2aSK53tMq+j6R2HhBZl+kpGIb+glQ8/hnVuJ/MXOPlUJkMjrk5awzmI/e v4ibR2Paxa0hY9OweFP0WqcRaFL/FKjgYCBmbfsfKqrlPn1TeTxWe5m2BcYXW1zlLc+m 0t5tPvQHNFYLXCDqmYU1i5vFZjx1e70wiUSTf902Fh6VvjRNkqm6jtW0Ve8IqvGDU7US TIQw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id b12si1471056plx.159.2019.01.17.03.47.03; Thu, 17 Jan 2019 03:47:19 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727146AbfAQKOG (ORCPT + 99 others); Thu, 17 Jan 2019 05:14:06 -0500 Received: from sauhun.de ([88.99.104.3]:38640 "EHLO pokefinder.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726493AbfAQKOG (ORCPT ); Thu, 17 Jan 2019 05:14:06 -0500 Received: from localhost (p54B33243.dip0.t-ipconnect.de [84.179.50.67]) by pokefinder.org (Postfix) with ESMTPSA id 7AF602C3F83; Thu, 17 Jan 2019 11:14:03 +0100 (CET) From: Wolfram Sang To: linux-gpio@vger.kernel.org Cc: linux-renesas-soc@vger.kernel.org, Wolfram Sang , Linus Walleij , Bartosz Golaszewski , Jonathan Corbet , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] Documentation: gpio: driver: fix wire name for I2C Date: Thu, 17 Jan 2019 11:13:21 +0100 Message-Id: <20190117101321.2164-1-wsa+renesas@sang-engineering.com> X-Mailer: git-send-email 2.11.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Typo: the data line is called "SDA" not "SCA". Signed-off-by: Wolfram Sang --- Documentation/driver-api/gpio/driver.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/driver-api/gpio/driver.rst b/Documentation/driver-api/gpio/driver.rst index a92d8837b62b..3043167fc557 100644 --- a/Documentation/driver-api/gpio/driver.rst +++ b/Documentation/driver-api/gpio/driver.rst @@ -135,7 +135,7 @@ This configuration is normally used as a way to achieve one of two things: - inverse wire-OR on an I/O line, for example a GPIO line, making it possible for any driving stage on the line to drive it low even if any other output to the same line is simultaneously driving it high. A special case of this - is driving the SCL and SCA lines of an I2C bus, which is by definition a + is driving the SCL and SDA lines of an I2C bus, which is by definition a wire-OR bus. Both usecases require that the line be equipped with a pull-up resistor. This -- 2.11.0