From patchwork Wed Oct 30 05:11:10 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3113021 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 81735BF924 for ; Wed, 30 Oct 2013 05:12:34 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id A8DA12020F for ; Wed, 30 Oct 2013 05:12:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A1D18201F4 for ; Wed, 30 Oct 2013 05:12:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751828Ab3J3FMb (ORCPT ); Wed, 30 Oct 2013 01:12:31 -0400 Received: from mail-pa0-f42.google.com ([209.85.220.42]:38211 "EHLO mail-pa0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750766Ab3J3FMb (ORCPT ); Wed, 30 Oct 2013 01:12:31 -0400 Received: by mail-pa0-f42.google.com with SMTP id kp14so409289pab.15 for ; Tue, 29 Oct 2013 22:12:30 -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=cIxVf4mV8DzO6Jx8NV/GP6jE24CROvjfa1zgGY/jd/4=; b=mF+PTmsUfsrjEtY1UXfPfGfVFsIs28S/bxppxQpHYLIeMKKAEVclm8K754ssRDlAR9 FiSpr/NMyDnoztI6pSLShUvyJBejocP46Ti0fhOtuQVXIopphno+vNdmmfvZTixvbgSz u7AMoKBiryb0rYfX6dUbm1ESCoMLumF2v6/iuDYKj2Pg4XT7k9U2Q+yE4/rqjpD+O2Uv 3X4QBw/eo2wXNDPULgLETqDYkE2qBLeE9QniYJgvrHwg9LjmgFvPKMYpQssI5dQKbnBp GoeNxLLtuFqb7O87gLLI4g+E8NVxLVxHQM/ss6gpjGyRQCUntlOVLXR0e+CZTsN+bldM e9xQ== X-Gm-Message-State: ALoCoQkM78/eUtC0r6/2fQ0uDZJ0Rn/5/MWs/92seFLngpb8Q7rUAKJOYR0QRm0Ys0RcTXfqPf8A X-Received: by 10.68.135.100 with SMTP id pr4mr3365581pbb.62.1383109950518; Tue, 29 Oct 2013 22:12:30 -0700 (PDT) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id ik1sm38742279pbc.9.2013.10.29.22.12.27 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 29 Oct 2013 22:12:29 -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 1/1] Documentation/watchdog: Add binding example in samsung-wdt Date: Wed, 30 Oct 2013 10:41:10 +0530 Message-Id: <1383109870-30297-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"; + };