From: Chanwoo Choi <cw00.choi@samsung.com>
To: myungjoo.ham@samsung.com,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: "robh+dt@kernel.org" <robh+dt@kernel.org>,
"pawel.moll@arm.com" <pawel.moll@arm.com>,
"mark.rutland@arm.com" <mark.rutland@arm.com>,
"ijc+devicetree@hellion.org.uk" <ijc+devicetree@hellion.org.uk>,
"galak@codeaurora.org" <galak@codeaurora.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>
Subject: Re: [PATCH v2] extcon: gpio: Add the support for Device tree bindings
Date: Mon, 05 Oct 2015 19:39:31 +0900 [thread overview]
Message-ID: <56125363.4060203@samsung.com> (raw)
In-Reply-To: <194162595.571031444032234245.JavaMail.weblogic@epmlwas07a>
On 2015년 10월 05일 17:03, MyungJoo Ham wrote:
>>
>> This patch adds the support for Device tree bindings of extcon-gpio driver.
>> The extcon-gpio device tree node must include the both 'extcon-id' and
>> 'extcon-gpio' property.
>>
> []
>>
>> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
>
>
> Except for some beautification issues described below,
>
> Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
>
>> ---
>> This patch is based on following patch[1].
>> [1] https://lkml.org/lkml/2015/10/3/304
>>
>> Changes from v1:
>> - Create the include/dt-bindings/extcon/extcon.h including the identification
>> of external connector. These definitions are used in dts file.
>> - Fix error if CONFIG_OF is disabled.
>>
>> .../devicetree/bindings/extcon/extcon-gpio.txt | 38 +++++++
>> drivers/extcon/extcon-gpio.c | 110 ++++++++++++++++-----
>> include/dt-bindings/extcon/extcon.h | 44 +++++++++
>> include/linux/extcon/extcon-gpio.h | 6 +-
>> 4 files changed, 173 insertions(+), 25 deletions(-)
>> create mode 100644 Documentation/devicetree/bindings/extcon/extcon-gpio.txt
>> create mode 100644 include/dt-bindings/extcon/extcon.h
>>
>> diff --git a/Documentation/devicetree/bindings/extcon/extcon-gpio.txt b/Documentation/devicetree/bindings/extcon/extcon-gpio.txt
>> new file mode 100644
>> index 000000000000..70c36f729963
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/extcon/extcon-gpio.txt
> []
>> diff --git a/drivers/extcon/extcon-gpio.c b/drivers/extcon/extcon-gpio.c
>> index 279ff8f6637d..7f3e24aae0c4 100644
>> --- a/drivers/extcon/extcon-gpio.c
>> +++ b/drivers/extcon/extcon-gpio.c
>> @@ -1,8 +1,8 @@
>> /*
>> * extcon_gpio.c - Single-state GPIO extcon driver based on extcon class
>> *
>> - * Copyright (C) 2008 Google, Inc.
>> - * Author: Mike Lockwood <lockwood@android.com>
>> + * Copyright (C) 2015 Chanwoo Choi <cw00.choi@samsung.com>, Samsung Electronics
>> + * Copyright (C) 2008 Mike Lockwood <lockwood@android.com>, Google, Inc.
>> *
>> * Modified by MyungJoo Ham <myungjoo.ham@samsung.com> to support extcon
>> * (originally switch class is supported)
>
> Let's make it in chronological order.
> (may need to "beautify the last two lines as well)
>
> I.e., 2008-->2012-->2015 or 2015-->2012-->2008.
> Not 2015-->2008-->2012
OK. I'll modify it.
>
>
>> @@ -26,12 +26,14 @@
> []
>> diff --git a/include/dt-bindings/extcon/extcon.h b/include/dt-bindings/extcon/extcon.h
>> new file mode 100644
>> index 000000000000..14c7f36b2206
>> --- /dev/null
>> +++ b/include/dt-bindings/extcon/extcon.h
> []
>> diff --git a/include/linux/extcon/extcon-gpio.h b/include/linux/extcon/extcon-gpio.h
>> index 7cacafb78b09..bcc6d7f7116a 100644
>> --- a/include/linux/extcon/extcon-gpio.h
>> +++ b/include/linux/extcon/extcon-gpio.h
> []
>> @@ -38,7 +38,7 @@ struct gpio_extcon_pdata {
>> unsigned int extcon_id;
>> unsigned gpio;
>> bool gpio_active_low;
>> - unsigned long debounce;
>> + unsigned int debounce;
>
> What about u32, making it more clear?
> ( > + device_property_read_u32(dev, "debounce-ms", &pdata->debounce); )
OK.
Thanks,
Chanwoo Choi
next prev parent reply other threads:[~2015-10-05 10:39 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-05 8:03 [PATCH v2] extcon: gpio: Add the support for Device tree bindings MyungJoo Ham
2015-10-05 10:39 ` Chanwoo Choi [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-10-05 6:58 Chanwoo Choi
[not found] ` <1444028299-11755-1-git-send-email-cw00.choi-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2015-10-05 7:00 ` Chanwoo Choi
2015-10-05 11:13 ` Mark Rutland
2015-10-13 3:03 ` Chanwoo Choi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56125363.4060203@samsung.com \
--to=cw00.choi@samsung.com \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=ijc+devicetree@hellion.org.uk \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=myungjoo.ham@samsung.com \
--cc=pawel.moll@arm.com \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).