From patchwork Thu May 5 10:35:06 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Haas X-Patchwork-Id: 9023341 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 63CD29F1D3 for ; Thu, 5 May 2016 10:35:30 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 98098203C3 for ; Thu, 5 May 2016 10:35:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C41C0203C1 for ; Thu, 5 May 2016 10:35:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756719AbcEEKf1 (ORCPT ); Thu, 5 May 2016 06:35:27 -0400 Received: from mx1.mailbox.org ([80.241.60.212]:48589 "EHLO mx1.mailbox.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756680AbcEEKf0 (ORCPT ); Thu, 5 May 2016 06:35:26 -0400 Received: from smtp1.mailbox.org (smtp1.mailbox.org [80.241.60.240]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.mailbox.org (Postfix) with ESMTPS id A896543A82; Thu, 5 May 2016 12:35:23 +0200 (CEST) X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from smtp1.mailbox.org ([80.241.60.240]) by hefe.heinlein-support.de (hefe.heinlein-support.de [91.198.250.172]) (amavisd-new, port 10030) with ESMTP id z4ICo6aYINsb; Thu, 5 May 2016 12:35:21 +0200 (CEST) From: Michael Haas To: robh+dt@kernel.org, pawel.moll@arm.com, mark.rutland@arm.com, ijc+devicetree@hellion.org.uk, galak@codeaurora.org, maxime.ripard@free-electrons.com, wens@csie.org, lee.jones@linaro.org, sre@kernel.org, dbaryshkov@gmail.com, dwmw2@infradead.org Cc: hdegoede@redhat.com, bonbons@linux-vserver.org, devicetree@vger.kernel.org, linux-pm@vger.kernel.org, linux@arm.linux.org.uk, linux-sunxi@googlegroups.com, Michael Haas Subject: [PATCH v3 3/5] ARM: dts: Add binding documentation for AXP20x pmic ac power supply Date: Thu, 5 May 2016 12:35:06 +0200 Message-Id: <1462444508-9363-4-git-send-email-haas@computerlinguist.org> In-Reply-To: <1462444508-9363-1-git-send-email-haas@computerlinguist.org> References: <1462444508-9363-1-git-send-email-haas@computerlinguist.org> Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Spam-Status: No, score=-9.0 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 Add binding documentation for the ac power supply part of the AXP20x pmic. Signed-off-by: Michael Haas Acked-by: Rob Herring Acked-by: Chen-Yu Tsai --- .../bindings/power_supply/axp20x_ac_power.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Documentation/devicetree/bindings/power_supply/axp20x_ac_power.txt diff --git a/Documentation/devicetree/bindings/power_supply/axp20x_ac_power.txt b/Documentation/devicetree/bindings/power_supply/axp20x_ac_power.txt new file mode 100644 index 0000000..1cebe35 --- /dev/null +++ b/Documentation/devicetree/bindings/power_supply/axp20x_ac_power.txt @@ -0,0 +1,17 @@ +AXP20x AC power supply + +Required Properties: +-compatible: "x-powers,axp202-ac-power-supply" + +This node is a subnode of the axp20x PMIC. + +Example: + +axp209: pmic@34 { + + ac-power-supply: ac-power-supply { + compatible = "x-powers,axp202-ac-power-supply"; + }; + + ... +};