Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754985AbcCJXI5 (ORCPT ); Thu, 10 Mar 2016 18:08:57 -0500 Received: from mail-wm0-f66.google.com ([74.125.82.66]:34481 "EHLO mail-wm0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752154AbcCJXIy convert rfc822-to-8bit (ORCPT ); Thu, 10 Mar 2016 18:08:54 -0500 Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.2 \(3112\)) Subject: Re: [PATCH RESEND] Documentation: devicetree: Clean up gpio-keys example From: Julien Chauveau In-Reply-To: <56DEA67E.8090704@suse.de> Date: Fri, 11 Mar 2016 00:08:49 +0100 Cc: Geert Uytterhoeven , "linux-input@vger.kernel.org" , linux-rockchip , LAKML , =?utf-8?Q?Heiko_St=C3=BCbner?= , Dmitry Torokhov , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , devicetree , LKML Content-Transfer-Encoding: 8BIT Message-Id: <7E647096-6B3B-4015-BB0F-7B4087206180@gmail.com> References: <1457375055-5544-1-git-send-email-afaerber@suse.de> <525564DD-D0D3-4DEB-9306-3A23288FD83F@gmail.com> <56DEA67E.8090704@suse.de> To: =?utf-8?Q?Andreas_F=C3=A4rber?= X-Mailer: Apple Mail (2.3112) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2220 Lines: 51 > Le 8 mars 2016 à 11:16, Andreas Färber a écrit : > > Am 08.03.2016 um 10:41 schrieb Julien Chauveau: >> Le 8 mars 2016 à 09:54, Geert Uytterhoeven a écrit : >>> On Mon, Mar 7, 2016 at 7:24 PM, Andreas Färber wrote: >>>> Drop #address-cells and #size-cells, which are not required by the >>>> gpio-keys binding documentation, as button sub-nodes are not devices. >>>> >>>> Reported-by: Julien Chauveau >>>> Signed-off-by: Andreas Färber >>>> --- >>>> Documentation/devicetree/bindings/input/gpio-keys.txt | 2 -- >>>> 1 file changed, 2 deletions(-) >>>> >>>> diff --git a/Documentation/devicetree/bindings/input/gpio-keys.txt b/Documentation/devicetree/bindings/input/gpio-keys.txt >>>> index 21641236c095..1552a11f6786 100644 >>>> --- a/Documentation/devicetree/bindings/input/gpio-keys.txt >>>> +++ b/Documentation/devicetree/bindings/input/gpio-keys.txt >>>> @@ -34,8 +34,6 @@ Example nodes: >>>> >>>> gpio_keys { >>>> compatible = "gpio-keys"; >>>> - #address-cells = <1>; >>>> - #size-cells = <0>; >>>> autorepeat; >>>> button@21 { >>> >>> FYI, with "[PATCH] scripts/dtc: Update to upstream version 53bf130b1cdd": >>> (http://www.spinics.net/lists/devicetree/msg117206.html) applied: >>> >>> Warning (unit_address_vs_reg): Node /keyboard/button@21 has a unit >>> name, but no reg property >>> >> >> Hi Andreas, >> This means you can also drop the unit-address (the @21 part) for the button. >> What about using a more relevant name like "key_up" instead of "button"? > > Or in my case power-key or power-button. Or would just power suffice? For the example nodes of the documentation, according to the labels you’ll probably want to use "up" and "down" (or "key-up" and "key-down", or "up-key" and "down-key"). For the Geekbox, I think "power" is meaningful enough. > > The Landingship baseboard does have four more buttons not yet enabled, > so I do need some way to distinguish nodes. The labels on the board are key1, key2, key3 and key4. Maybe you can use that?