From: Chanwoo Choi <cw00.choi@samsung.com>
To: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Cc: myungjoo.ham@samsung.com, patches@opensource.wolfsonmicro.com,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/4] extcon: arizona: Update manual headphone detection calculation
Date: Fri, 30 May 2014 10:27:35 +0900 [thread overview]
Message-ID: <5387DE87.5090009@samsung.com> (raw)
In-Reply-To: <1401377274-10249-3-git-send-email-ckeepax@opensource.wolfsonmicro.com>
Hi Charles,
On 05/30/2014 12:27 AM, Charles Keepax wrote:
> The higher levels of impedance have a higher minimum value than the
> first level. As the same value was used for all levels, higher impedances
> were reported with a very low level of accuracy. This patch applies the
> approriate lower threshold for each level.
>
> Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
> ---
> drivers/extcon/extcon-arizona.c | 13 ++++++++-----
> 1 files changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c
> index f2c36b1..c1c8647 100644
> --- a/drivers/extcon/extcon-arizona.c
> +++ b/drivers/extcon/extcon-arizona.c
> @@ -329,12 +329,13 @@ static void arizona_stop_mic(struct arizona_extcon_info *info)
> }
>
> static struct {
> + unsigned int threshold;
> unsigned int factor_a;
> unsigned int factor_b;
> } arizona_hpdet_b_ranges[] = {
> - { 5528, 362464 },
> - { 11084, 6186851 },
> - { 11065, 65460395 },
> + { 100, 5528, 362464 },
> + { 169, 11084, 6186851 },
> + { 169, 11065, 65460395 },
If you possible, I want to know the 'unit' of the variable(factor_a, factor_b).
> };
>
> static struct {
> @@ -391,7 +392,8 @@ static int arizona_hpdet_read(struct arizona_extcon_info *info)
> >> ARIZONA_HP_IMPEDANCE_RANGE_SHIFT;
>
> if (range < ARRAY_SIZE(arizona_hpdet_b_ranges) - 1 &&
> - (val < 100 || val >= 0x3fb)) {
> + (val < arizona_hpdet_b_ranges[range].threshold ||
> + val >= 0x3fb)) {
I don't understand the meaning of 0x3fb hex value.
I prefer to define constant variable for readability.
> range++;
> dev_dbg(arizona->dev, "Moving to HPDET range %d\n",
> range);
> @@ -404,7 +406,8 @@ static int arizona_hpdet_read(struct arizona_extcon_info *info)
> }
>
> /* If we go out of range report top of range */
> - if (val < 100 || val >= 0x3fb) {
> + if (val < arizona_hpdet_b_ranges[range].threshold ||
> + val >= 0x3fb) {
ditto.
> dev_dbg(arizona->dev, "Measurement out of range\n");
> return ARIZONA_HPDET_MAX;
> }
>
Thanks,
Chanwoo Choi
next prev parent reply other threads:[~2014-05-30 1:27 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-29 15:27 [PATCH 1/4] extcon: arizona: Remove duplicate set of input parent device Charles Keepax
2014-05-29 15:27 ` [PATCH 2/4] extcon: arizona: Use extcon cable API Charles Keepax
2014-05-30 1:25 ` Chanwoo Choi
2014-05-29 15:27 ` [PATCH 3/4] extcon: arizona: Update manual headphone detection calculation Charles Keepax
2014-05-30 1:27 ` Chanwoo Choi [this message]
2014-05-30 9:42 ` Charles Keepax
2014-05-29 15:27 ` [PATCH 4/4] extcon: arizona: Correct typo to disable regulation for button detection Charles Keepax
2014-05-30 1:31 ` Chanwoo Choi
2014-05-30 1:18 ` [PATCH 1/4] extcon: arizona: Remove duplicate set of input parent device Chanwoo Choi
2014-05-30 1:25 ` 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=5387DE87.5090009@samsung.com \
--to=cw00.choi@samsung.com \
--cc=ckeepax@opensource.wolfsonmicro.com \
--cc=linux-kernel@vger.kernel.org \
--cc=myungjoo.ham@samsung.com \
--cc=patches@opensource.wolfsonmicro.com \
/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