From patchwork Fri Jul 7 09:52:03 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Young X-Patchwork-Id: 785415 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3x3qdl34chz9rxm for ; Fri, 7 Jul 2017 19:52:11 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752093AbdGGJwJ (ORCPT ); Fri, 7 Jul 2017 05:52:09 -0400 Received: from gofer.mess.org ([88.97.38.141]:34265 "EHLO gofer.mess.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751853AbdGGJwG (ORCPT ); Fri, 7 Jul 2017 05:52:06 -0400 Received: by gofer.mess.org (Postfix, from userid 1000) id DFFC6601F7; Fri, 7 Jul 2017 10:52:04 +0100 (BST) From: Sean Young To: linux-media@vger.kernel.org, robh+dt@kernel.org, devicetree@vger.kernel.org Subject: [PATCH v2 5/6] [media] dt-bindings: gpio-ir-tx: add support for GPIO IR Transmitter Date: Fri, 7 Jul 2017 10:52:03 +0100 Message-Id: <580c648de65344e9316ff153ba316efd4d527f12.1499419624.git.sean@mess.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: References: Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Document the device tree bindings for the GPIO Bit Banging IR Transmitter. Signed-off-by: Sean Young --- Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.txt diff --git a/Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.txt b/Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.txt new file mode 100644 index 0000000..bc08d89 --- /dev/null +++ b/Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.txt @@ -0,0 +1,11 @@ +Device tree bindings for IR LED connected through gpio pin which is used as +remote controller transmitter. + +Required properties: + - compatible: should be "gpio-ir-tx". + +Example: + irled@0 { + compatible = "gpio-ir-tx"; + gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>; + };