From patchwork Wed Oct 7 12:23:27 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lee Jones X-Patchwork-Id: 7344951 X-Patchwork-Delegate: herbert@gondor.apana.org.au Return-Path: X-Original-To: patchwork-linux-crypto@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id D5CB3BEEA4 for ; Wed, 7 Oct 2015 12:26:28 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 05BF3205E6 for ; Wed, 7 Oct 2015 12:26:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0F77B2057F for ; Wed, 7 Oct 2015 12:26:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751954AbbJGM0Z (ORCPT ); Wed, 7 Oct 2015 08:26:25 -0400 Received: from mail-wi0-f181.google.com ([209.85.212.181]:34693 "EHLO mail-wi0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751535AbbJGMZe (ORCPT ); Wed, 7 Oct 2015 08:25:34 -0400 Received: by wicfx3 with SMTP id fx3so209799267wic.1 for ; Wed, 07 Oct 2015 05:25:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=0VgG+sZiMNx131+NjwDokUe6mobTSYpszX7zXM5E4Mw=; b=dZZYmaj7FkjsxjE+vsYjyKcX2uk/a6N8uOwsHQtJuvSpXHunwha3k4PxHnw9WhAr01 gyHqgLsjjmfm0EwtByqypp98KIIzkzOmlup5lkIoIpT0L147CKUCtQ6fSWpJKAPFYvA6 R1lPJHIxF4kHb1eCtMftO4kto23xP+u4MY0n88HOvXat/pXWqWt+lXNRaAik/LsTlDqf 35+f/fMvEquxvooNz22Ep4lHT6gHujgEi7EqlpCoLoSwsEPTLJjXdPwNT4zcQcwprz/f 9Olas6fFlC/xtPxGYfUANCNAbsCh+PpgXDj0gDv4l/LR/0zN5HMDRpz2nXRE2goimZaa hLJg== X-Gm-Message-State: ALoCoQkIJZ+P/QgbzOYX1ULDX1WWVcFjosEbj9yVEmFFZy5MvVrV6Jq7WCycy8cVew6egkvar8iu X-Received: by 10.180.188.47 with SMTP id fx15mr22298184wic.41.1444220733587; Wed, 07 Oct 2015 05:25:33 -0700 (PDT) Received: from localhost.localdomain (host81-129-171-83.range81-129.btcentralplus.com. [81.129.171.83]) by smtp.gmail.com with ESMTPSA id jq10sm38925455wjc.40.2015.10.07.05.25.32 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 07 Oct 2015 05:25:33 -0700 (PDT) From: Lee Jones To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: kernel@stlinux.com, herbert@gondor.apana.org.au, linux-crypto@vger.kernel.org, pankaj.dev@st.com, daniel.thompson@linaro.org, linux@arm.linux.org.uk, Lee Jones Subject: [PATCH v2 1/3] hwrng: st: dt: Fix trivial typo in node address Date: Wed, 7 Oct 2015 13:23:27 +0100 Message-Id: <1444220609-31251-2-git-send-email-lee.jones@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1444220609-31251-1-git-send-email-lee.jones@linaro.org> References: <1444220609-31251-1-git-send-email-lee.jones@linaro.org> Sender: linux-crypto-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP DT nodes should not append their addresses with '0x'. Suggested-by: Stephen Boyd Signed-off-by: Lee Jones --- Documentation/devicetree/bindings/rng/st,rng.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/rng/st,rng.txt b/Documentation/devicetree/bindings/rng/st,rng.txt index dbc64e6..35734bc 100644 --- a/Documentation/devicetree/bindings/rng/st,rng.txt +++ b/Documentation/devicetree/bindings/rng/st,rng.txt @@ -8,7 +8,7 @@ clocks : Phandle to device's clock (See: ../clocks/clock-bindings.txt) Example: -rng@0xfee80000 { +rng@fee80000 { compatible = "st,rng"; reg = <0xfee80000 0x1000>; clocks = <&clk_sysin>;