Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1612238 > unrolled thread

[PATCH] Input: silead - list all supported compatible strings in binding document

Started byJavier Martinez Canillas <javier@osg.samsung.com>
First post2017-03-29 20:30 +0200
Last post2017-04-03 21:00 +0200
Articles 6 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] Input: silead - list all supported compatible strings in binding document Javier Martinez Canillas <javier@osg.samsung.com> - 2017-03-29 20:30 +0200
    Re: [PATCH] Input: silead - list all supported compatible strings in  binding document Rob Herring <robh@kernel.org> - 2017-04-03 17:30 +0200
      Re: [PATCH] Input: silead - list all supported compatible strings in  binding document Javier Martinez Canillas <javier@osg.samsung.com> - 2017-04-03 18:00 +0200
        Re: [PATCH] Input: silead - list all supported compatible strings in  binding document Rob Herring <robh@kernel.org> - 2017-04-03 23:20 +0200
          Re: [PATCH] Input: silead - list all supported compatible strings in  binding document Javier Martinez Canillas <javier@osg.samsung.com> - 2017-04-03 23:30 +0200
      Re: [PATCH] Input: silead - list all supported compatible strings in  binding document Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2017-04-03 21:00 +0200

#1612238 — [PATCH] Input: silead - list all supported compatible strings in binding document

FromJavier Martinez Canillas <javier@osg.samsung.com>
Date2017-03-29 20:30 +0200
Subject[PATCH] Input: silead - list all supported compatible strings in binding document
Message-ID<tqqw2-2lW-15@gated-at.bofh.it>
The driver contains compatible strings for different models, but the DT
binding doc only lists one of them. Add the remaining to the document.

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
---

 .../devicetree/bindings/input/touchscreen/silead_gsl1680.txt       | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt b/Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt
index ce85ee508238..6aa625e0cb8d 100644
--- a/Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt
+++ b/Documentation/devicetree/bindings/input/touchscreen/silead_gsl1680.txt
@@ -1,7 +1,12 @@
 * GSL 1680 touchscreen controller
 
 Required properties:
-- compatible		  : "silead,gsl1680"
+- compatible		  : Must be one of the following, depending on the model:
+			    "silead,gsl1680"
+			    "silead,gsl1688"
+			    "silead,gsl3670"
+			    "silead,gsl3675"
+			    "silead,gsl3692"
 - reg			  : I2C slave address of the chip (0x40)
 - interrupt-parent	  : a phandle pointing to the interrupt controller
 			    serving the interrupt for this chip
-- 
2.9.3

[toc] | [next] | [standalone]


#1615321 — Re: [PATCH] Input: silead - list all supported compatible strings in binding document

FromRob Herring <robh@kernel.org>
Date2017-04-03 17:30 +0200
SubjectRe: [PATCH] Input: silead - list all supported compatible strings in binding document
Message-ID<tsc5z-cE-3@gated-at.bofh.it>
In reply to#1612238
On Wed, Mar 29, 2017 at 02:25:31PM -0400, Javier Martinez Canillas wrote:
> The driver contains compatible strings for different models, but the DT
> binding doc only lists one of them. Add the remaining to the document.
> 
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
> ---
> 
>  .../devicetree/bindings/input/touchscreen/silead_gsl1680.txt       | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)

"dt-bindings: input: ..." is preferred for the subject, but no need to 
respin just for that.

Acked-by: Rob Herring <robh@kernel.org> 

[toc] | [prev] | [next] | [standalone]


#1615358 — Re: [PATCH] Input: silead - list all supported compatible strings in binding document

FromJavier Martinez Canillas <javier@osg.samsung.com>
Date2017-04-03 18:00 +0200
SubjectRe: [PATCH] Input: silead - list all supported compatible strings in binding document
Message-ID<tscyC-nv-17@gated-at.bofh.it>
In reply to#1615321
Hello Rob,

On 04/03/2017 11:25 AM, Rob Herring wrote:
> On Wed, Mar 29, 2017 at 02:25:31PM -0400, Javier Martinez Canillas wrote:
>> The driver contains compatible strings for different models, but the DT
>> binding doc only lists one of them. Add the remaining to the document.
>>
>> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
>> ---
>>
>>  .../devicetree/bindings/input/touchscreen/silead_gsl1680.txt       | 7 ++++++-
>>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> "dt-bindings: input: ..." is preferred for the subject, but no need to 
> respin just for that.
>

Can we document it in Documentation/devicetree/bindings/submitting-patches.txt?

I'm asking because is true that at the beginning we used "dt-bindings: foo" for
all DT bindings patches but then many (most?) maintainers started asking for the
subsystem subject line to be used for both drivers and DT bindings docs since
they would be merging both and also they could miss the DT bindings patches if
their subsystem prefix was not used.

> Acked-by: Rob Herring <robh@kernel.org> 
> 

Best regards,
-- 
Javier Martinez Canillas
Open Source Group
Samsung Research America

[toc] | [prev] | [next] | [standalone]


#1615563 — Re: [PATCH] Input: silead - list all supported compatible strings in binding document

FromRob Herring <robh@kernel.org>
Date2017-04-03 23:20 +0200
SubjectRe: [PATCH] Input: silead - list all supported compatible strings in binding document
Message-ID<tshyj-3Qh-41@gated-at.bofh.it>
In reply to#1615358
On Mon, Apr 3, 2017 at 10:51 AM, Javier Martinez Canillas
<javier@osg.samsung.com> wrote:
> Hello Rob,
>
> On 04/03/2017 11:25 AM, Rob Herring wrote:
>> On Wed, Mar 29, 2017 at 02:25:31PM -0400, Javier Martinez Canillas wrote:
>>> The driver contains compatible strings for different models, but the DT
>>> binding doc only lists one of them. Add the remaining to the document.
>>>
>>> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
>>> ---
>>>
>>>  .../devicetree/bindings/input/touchscreen/silead_gsl1680.txt       | 7 ++++++-
>>>  1 file changed, 6 insertions(+), 1 deletion(-)
>>
>> "dt-bindings: input: ..." is preferred for the subject, but no need to
>> respin just for that.
>>
>
> Can we document it in Documentation/devicetree/bindings/submitting-patches.txt?

Yes. Actually, I was thinking of adding the preferred prefixes to
MAINTAINERS. Then checkpatch.pl could check it perhaps.

> I'm asking because is true that at the beginning we used "dt-bindings: foo" for
> all DT bindings patches but then many (most?) maintainers started asking for the
> subsystem subject line to be used for both drivers and DT bindings docs since
> they would be merging both and also they could miss the DT bindings patches if
> their subsystem prefix was not used.

I'd argue that most subsys maintainers don't (or they just change it
when applying). Mark B does the most. I'm not going to waste any time
arguing over it if folks want something different. I'm mainly trying
to get rid of subjects like "Documentation: devicetree: bindings:
Document the DT binding for foo-bar". :)

Rob

[toc] | [prev] | [next] | [standalone]


#1615567 — Re: [PATCH] Input: silead - list all supported compatible strings in binding document

FromJavier Martinez Canillas <javier@osg.samsung.com>
Date2017-04-03 23:30 +0200
SubjectRe: [PATCH] Input: silead - list all supported compatible strings in binding document
Message-ID<tshHY-3Tw-21@gated-at.bofh.it>
In reply to#1615563
Hello Rob,

On 04/03/2017 05:15 PM, Rob Herring wrote:
> On Mon, Apr 3, 2017 at 10:51 AM, Javier Martinez Canillas
> <javier@osg.samsung.com> wrote:
>> Hello Rob,
>>
>> On 04/03/2017 11:25 AM, Rob Herring wrote:
>>> On Wed, Mar 29, 2017 at 02:25:31PM -0400, Javier Martinez Canillas wrote:
>>>> The driver contains compatible strings for different models, but the DT
>>>> binding doc only lists one of them. Add the remaining to the document.
>>>>
>>>> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
>>>> ---
>>>>
>>>>  .../devicetree/bindings/input/touchscreen/silead_gsl1680.txt       | 7 ++++++-
>>>>  1 file changed, 6 insertions(+), 1 deletion(-)
>>>
>>> "dt-bindings: input: ..." is preferred for the subject, but no need to
>>> respin just for that.
>>>
>>
>> Can we document it in Documentation/devicetree/bindings/submitting-patches.txt?
> 
> Yes. Actually, I was thinking of adding the preferred prefixes to
> MAINTAINERS. Then checkpatch.pl could check it perhaps.
>

That would be great.

>> I'm asking because is true that at the beginning we used "dt-bindings: foo" for
>> all DT bindings patches but then many (most?) maintainers started asking for the
>> subsystem subject line to be used for both drivers and DT bindings docs since
>> they would be merging both and also they could miss the DT bindings patches if
>> their subsystem prefix was not used.
> 
> I'd argue that most subsys maintainers don't (or they just change it
> when applying). Mark B does the most. I'm not going to waste any time
> arguing over it if folks want something different. I'm mainly trying
> to get rid of subjects like "Documentation: devicetree: bindings:
> Document the DT binding for foo-bar". :)
>

Yeah, I don't have a strong opinion. I just want an authoritative doc
so I can refer subsystems maintainers to when they argue that I should
use their subsystem prefix instead of "dt-bindings: foo: ..." :)

> Rob
> 

Best regards,
-- 
Javier Martinez Canillas
Open Source Group
Samsung Research America

[toc] | [prev] | [next] | [standalone]


#1615475 — Re: [PATCH] Input: silead - list all supported compatible strings in binding document

FromDmitry Torokhov <dmitry.torokhov@gmail.com>
Date2017-04-03 21:00 +0200
SubjectRe: [PATCH] Input: silead - list all supported compatible strings in binding document
Message-ID<tsfmN-2dG-1@gated-at.bofh.it>
In reply to#1615321
On Mon, Apr 03, 2017 at 10:25:43AM -0500, Rob Herring wrote:
> On Wed, Mar 29, 2017 at 02:25:31PM -0400, Javier Martinez Canillas wrote:
> > The driver contains compatible strings for different models, but the DT
> > binding doc only lists one of them. Add the remaining to the document.
> > 
> > Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
> > ---
> > 
> >  .../devicetree/bindings/input/touchscreen/silead_gsl1680.txt       | 7 ++++++-
> >  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> "dt-bindings: input: ..." is preferred for the subject, but no need to 
> respin just for that.
> 
> Acked-by: Rob Herring <robh@kernel.org> 

Applied, thank you.

-- 
Dmitry

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web