From patchwork Wed Oct 30 05:26:37 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3113111 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 6C4179F3E2 for ; Wed, 30 Oct 2013 05:28:16 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id AC9BA201F4 for ; Wed, 30 Oct 2013 05:28:15 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DDE8B2016A for ; Wed, 30 Oct 2013 05:28:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751476Ab3J3F2O (ORCPT ); Wed, 30 Oct 2013 01:28:14 -0400 Received: from mail-pa0-f49.google.com ([209.85.220.49]:56283 "EHLO mail-pa0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750757Ab3J3F2N (ORCPT ); Wed, 30 Oct 2013 01:28:13 -0400 Received: by mail-pa0-f49.google.com with SMTP id lj1so413987pab.8 for ; Tue, 29 Oct 2013 22:28:13 -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; bh=j9wWHxmgflgl1HgKDR67sFp3JbGBwrHtYOxe6PmP17s=; b=eSJs/8FWiF3FuZrJ66EaaeInvKX5leXrP/RejjPitstzna/LynfPzL1aOL7jf8XCiJ 69AJg75Oyimi/tv1vHLdXgWWsIlgFJpNai3g6xa0sK0VXlgN4Yx0WQ/zW79Z44prkQ9B cAYf9uAThEqPrUtZvfZdEITlKDDYlP34hY9bbrA1Yohhlyi6lXxewFF25fO3+FMqQGL9 cH0jdSbg3qgv+0nLnFUjh0vAKaGJcYvZoxFl/sk7/tKsMaXCerjiyU1Oe7t4JwrF6JUW nf8LhU9fSz17+t5YAx2OCu9qmDLRH+pjWE8VVz9Pp7onBPJR8h4XGGrH1HyICRU8ZOKl qfrA== X-Gm-Message-State: ALoCoQnuhDiOazCPo8mpa5z1fe+r7YAfUFXrCZBx7WydB1Z+ZOkw93oHC33UFq530vYGEJHObzDs X-Received: by 10.68.135.132 with SMTP id ps4mr3092551pbb.171.1383110892976; Tue, 29 Oct 2013 22:28:12 -0700 (PDT) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id n10sm3245312pbg.28.2013.10.29.22.28.09 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 29 Oct 2013 22:28:12 -0700 (PDT) From: Sachin Kamat To: linux-watchdog@vger.kernel.org Cc: linux-samsung-soc@vger.kernel.org, devicetree@vger.kernel.org, mark.rutland@arm.com, wim@iguana.be, linux@roeck-us.net, sachin.kamat@linaro.org Subject: [PATCH Resend 1/1] Documentation/watchdog: Add binding example in samsung-wdt Date: Wed, 30 Oct 2013 10:56:37 +0530 Message-Id: <1383110797-26225-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, 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 Added an example for reference. Signed-off-by: Sachin Kamat --- .../devicetree/bindings/watchdog/samsung-wdt.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Documentation/devicetree/bindings/watchdog/samsung-wdt.txt b/Documentation/devicetree/bindings/watchdog/samsung-wdt.txt index 2aa486c..7ddf461 100644 --- a/Documentation/devicetree/bindings/watchdog/samsung-wdt.txt +++ b/Documentation/devicetree/bindings/watchdog/samsung-wdt.txt @@ -12,3 +12,12 @@ Required properties: Optional properties: - timeout-sec : contains the watchdog timeout in seconds. + +Example: + +watchdog@101D0000 { + compatible = "samsung,s3c2410-wdt"; + reg = <0x101D0000 0x100>; + interrupts = <0 42 0>; + status = "disabled"; +};