From: Iiro Valkonen <iiro.valkonen@atmel.com>
To: Joonyoung Shim <dofmind@gmail.com>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>, linux-input@vger.kernel.org
Subject: Re: [PATCH 2/2 v3] Input: atmel_mxt_ts - Make CHG line high after the interrupts are enabled
Date: Fri, 08 Apr 2011 15:58:34 +0300 [thread overview]
Message-ID: <4D9F067A.8070204@atmel.com> (raw)
In-Reply-To: <BANLkTi=PRjx3nN0LQs9Asdj0PHj-ripv4g@mail.gmail.com>
Hello,
On 04/08/2011 07:56 AM, Joonyoung Shim wrote:
> Hi,
>
> 2011/4/1 Iiro Valkonen <iiro.valkonen@atmel.com>:
>> This is version 2 of the patch, where sysfs group is correctly removed in case of error, and the firmware update is also considered (mxt_make_highchg is also called from mxt_initialize).
>>
>> Original description:
>>
>> Make the CHG line (interrupt line) go high after the interrupts have been enabled to make sure we don't miss the falling edge.
>>
>> Signed-off-by: Iiro Valkonen <iiro.valkonen@atmel.com>
>> ---
>> drivers/input/touchscreen/atmel_mxt_ts.c | 14 ++++++++++----
>> 1 files changed, 10 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c b/drivers/input/touchscreen/atmel_mxt_ts.c
>> index 4012436..08ea846 100644
>> --- a/drivers/input/touchscreen/atmel_mxt_ts.c
>> +++ b/drivers/input/touchscreen/atmel_mxt_ts.c
>> @@ -804,10 +804,6 @@ static int mxt_initialize(struct mxt_data *data)
>> if (error)
>> return error;
>>
>> - error = mxt_make_highchg(data);
>> - if (error)
>> - return error;
>> -
>> mxt_handle_pdata(data);
>>
>> /* Backup to memory */
>> @@ -832,6 +828,10 @@ static int mxt_initialize(struct mxt_data *data)
>> return error;
>> info->matrix_ysize = val;
>>
>> + error = mxt_make_highchg(data);
>> + if (error)
>> + return error;
>> +
>
> This is unnecessary patch. If you add this for firmware update part,
> how about move to mxt_update_fw_store()?
>
Good call.
>> dev_info(&client->dev,
>> "Family ID: %d Variant ID: %d Version: %d Build: %d\n",
>> info->family_id, info->variant_id, info->version,
>> @@ -1098,8 +1098,14 @@ static int __devinit mxt_probe(struct i2c_client *client,
>> if (error)
>> goto err_unregister_device;
>>
>> + error = mxt_make_highchg(data);
>> + if (error)
>> + goto err_remove_sysfs_group;
>> +
>
> This is ok, but how about move this to the below request_threaded_irq()
> instead of adding error handling?
>
Makes sense, will move it.
Thanks for the feedback.
BR,
--
Iiro
next prev parent reply other threads:[~2011-04-08 13:00 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-17 14:43 [PATCH 2/2] Input: atmel_mxt_ts - Make CHG line high after the interrupts are enabled Iiro Valkonen
2011-03-21 11:56 ` Joonyoung Shim
2011-04-01 14:04 ` [PATCH 2/2 v2] " Iiro Valkonen
2011-04-08 4:56 ` Joonyoung Shim
2011-04-08 12:58 ` Iiro Valkonen [this message]
2011-04-08 13:16 ` [PATCH 2/2 v3] " Iiro Valkonen
2011-04-13 5:17 ` Joonyoung Shim
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=4D9F067A.8070204@atmel.com \
--to=iiro.valkonen@atmel.com \
--cc=dmitry.torokhov@gmail.com \
--cc=dofmind@gmail.com \
--cc=linux-input@vger.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.