From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7E24EC433E1 for ; Sun, 19 Jul 2020 22:12:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 674EB207FC for ; Sun, 19 Jul 2020 22:12:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726539AbgGSWMX (ORCPT ); Sun, 19 Jul 2020 18:12:23 -0400 Received: from relay9-d.mail.gandi.net ([217.70.183.199]:57701 "EHLO relay9-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726156AbgGSWMX (ORCPT ); Sun, 19 Jul 2020 18:12:23 -0400 X-Originating-IP: 195.189.32.242 Received: from pc.localdomain (unknown [195.189.32.242]) (Authenticated sender: contact@artur-rojek.eu) by relay9-d.mail.gandi.net (Postfix) with ESMTPSA id C6362FF805; Sun, 19 Jul 2020 22:12:18 +0000 (UTC) From: Artur Rojek To: Dmitry Torokhov , Rob Herring , Mark Rutland , Jonathan Cameron , Paul Cercueil , Andy Shevchenko Cc: Heiko Stuebner , Ezequiel Garcia , linux-input@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Artur Rojek Subject: [PATCH v8 0/2] input: ADC joystick driver & DT bindings Date: Mon, 20 Jul 2020 00:11:01 +0200 Message-Id: <20200719221103.91644-1-contact@artur-rojek.eu> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi all, this series is a continuation of adc-joystick changes split from: https://lore.kernel.org/linux-iio/20200709152200.10039-1-contact@artur-rojek.eu/ Rob, the bindings example in patch 1/2 depends on changes introduced in another patchset, still to be merged: https://lore.kernel.org/linux-iio/20200719205307.87385-4-contact@artur-rojek.eu/ Your scripts will most likely fail to validate this. You have already reviewed this patch when it was still part of the aforementioned series. Cheers, Artur Artur Rojek (2): dt-bindings: input: Add docs for ADC driven joystick. input: joystick: Add ADC attached joystick driver. .../bindings/input/adc-joystick.yaml | 121 +++++++++ drivers/input/joystick/Kconfig | 10 + drivers/input/joystick/Makefile | 1 + drivers/input/joystick/adc-joystick.c | 253 ++++++++++++++++++ 4 files changed, 385 insertions(+) create mode 100644 Documentation/devicetree/bindings/input/adc-joystick.yaml create mode 100644 drivers/input/joystick/adc-joystick.c -- 2.27.0