From patchwork Sun Dec 6 11:29:12 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vladimir Zapolskiy X-Patchwork-Id: 553110 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id F3F5F1402BF for ; Sun, 6 Dec 2015 22:29:38 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753932AbbLFL3g (ORCPT ); Sun, 6 Dec 2015 06:29:36 -0500 Received: from mleia.com ([178.79.152.223]:51788 "EHLO mail.mleia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753831AbbLFL3g (ORCPT ); Sun, 6 Dec 2015 06:29:36 -0500 Received: from mail.mleia.com (localhost [127.0.0.1]) by mail.mleia.com (Postfix) with ESMTP id C2E9E117A8A; Sun, 6 Dec 2015 11:31:33 +0000 (GMT) From: Vladimir Zapolskiy To: Thierry Reding , Rob Herring , Arnd Bergmann Cc: Roland Stigge , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-pwm@vger.kernel.org Subject: [PATCH v2 1/6] dt: lpc32xx: pwm: correct LPC32xx PWM device node example Date: Sun, 6 Dec 2015 13:29:12 +0200 Message-Id: <1449401357-22458-2-git-send-email-vz@mleia.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1449401357-22458-1-git-send-email-vz@mleia.com> References: <1449401357-22458-1-git-send-email-vz@mleia.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-49551924 X-CRM114-CacheID: sfid-20151206_113133_820288_43AE3556 X-CRM114-Status: GOOD ( 10.18 ) Sender: linux-pwm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pwm@vger.kernel.org The change removes '0x' from a device node address and uses lower case hex chars. Signed-off-by: Vladimir Zapolskiy --- Changes from v1 to v2: - new change Documentation/devicetree/bindings/pwm/lpc32xx-pwm.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/devicetree/bindings/pwm/lpc32xx-pwm.txt b/Documentation/devicetree/bindings/pwm/lpc32xx-pwm.txt index cfe1db3..1ab1abc 100644 --- a/Documentation/devicetree/bindings/pwm/lpc32xx-pwm.txt +++ b/Documentation/devicetree/bindings/pwm/lpc32xx-pwm.txt @@ -6,7 +6,7 @@ Required properties: Examples: -pwm@0x4005C000 { +pwm@4005c000 { compatible = "nxp,lpc3220-pwm"; - reg = <0x4005C000 0x8>; + reg = <0x4005c000 0x8>; };