From patchwork Fri Dec 22 20:08:40 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 10131031 X-Patchwork-Delegate: geert@linux-m68k.org Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 4D6046038F for ; Fri, 22 Dec 2017 20:08:54 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 347EE29D72 for ; Fri, 22 Dec 2017 20:08:54 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 16C4629DEE; Fri, 22 Dec 2017 20:08:54 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2184529D72 for ; Fri, 22 Dec 2017 20:08:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756037AbdLVUIv (ORCPT ); Fri, 22 Dec 2017 15:08:51 -0500 Received: from sauhun.de ([88.99.104.3]:58864 "EHLO pokefinder.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755940AbdLVUIv (ORCPT ); Fri, 22 Dec 2017 15:08:51 -0500 Received: from localhost (p54B33A31.dip0.t-ipconnect.de [84.179.58.49]) by pokefinder.org (Postfix) with ESMTPSA id 060F62C65C3; Fri, 22 Dec 2017 21:08:48 +0100 (CET) From: Wolfram Sang To: linux-gpio@vger.kernel.org Cc: linux-renesas-soc@vger.kernel.org, Geert Uytterhoeven , Wolfram Sang Subject: [PATCH] gpio: of: make example syntactically correct Date: Fri, 22 Dec 2017 21:08:40 +0100 Message-Id: <20171222200840.8317-1-wsa+renesas@sang-engineering.com> X-Mailer: git-send-email 2.11.0 Sender: linux-renesas-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The ';' was missing. Signed-off-by: Wolfram Sang --- Documentation/devicetree/bindings/gpio/gpio.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/devicetree/bindings/gpio/gpio.txt b/Documentation/devicetree/bindings/gpio/gpio.txt index 802402f6cc5d89..53e0a0e01a4ee0 100644 --- a/Documentation/devicetree/bindings/gpio/gpio.txt +++ b/Documentation/devicetree/bindings/gpio/gpio.txt @@ -33,11 +33,11 @@ The following example could be used to describe GPIO pins used as device enable and bit-banged data signals: gpio1: gpio1 { - gpio-controller + gpio-controller; #gpio-cells = <2>; }; gpio2: gpio2 { - gpio-controller + gpio-controller; #gpio-cells = <1>; }; [...]