* [PATCH] Input: bf54x-keys: ! has a higher priority than >
@ 2009-02-05 7:19 Bryan Wu
2009-02-05 22:00 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Bryan Wu @ 2009-02-05 7:19 UTC (permalink / raw)
To: dmitry.torokhov
Cc: linux-input, linux-kernel, Roel Kluin, Michael Hennerich,
Bryan Wu
From: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
---
drivers/input/keyboard/bf54x-keys.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/input/keyboard/bf54x-keys.c b/drivers/input/keyboard/bf54x-keys.c
index 1928401..ee855c5 100644
--- a/drivers/input/keyboard/bf54x-keys.c
+++ b/drivers/input/keyboard/bf54x-keys.c
@@ -209,8 +209,8 @@ static int __devinit bfin_kpad_probe(struct platform_device *pdev)
goto out;
}
- if (!pdata->debounce_time || !pdata->debounce_time > MAX_MULT ||
- !pdata->coldrive_time || !pdata->coldrive_time > MAX_MULT) {
+ if (!pdata->debounce_time || pdata->debounce_time > MAX_MULT ||
+ !pdata->coldrive_time || pdata->coldrive_time > MAX_MULT) {
printk(KERN_ERR DRV_NAME
": Invalid Debounce/Columdrive Time from pdata\n");
bfin_write_KPAD_MSEL(0xFF0); /* Default MSEL */
--
1.5.6.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Input: bf54x-keys: ! has a higher priority than >
2009-02-05 7:19 [PATCH] Input: bf54x-keys: ! has a higher priority than > Bryan Wu
@ 2009-02-05 22:00 ` Andrew Morton
2009-02-06 8:49 ` Hennerich, Michael
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2009-02-05 22:00 UTC (permalink / raw)
Cc: dmitry.torokhov, linux-input, linux-kernel, roel.kluin,
michael.hennerich, cooloney
On Thu, 5 Feb 2009 15:19:55 +0800
Bryan Wu <cooloney@kernel.org> wrote:
> From: Roel Kluin <roel.kluin@gmail.com>
>
> Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
> Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
> Signed-off-by: Bryan Wu <cooloney@kernel.org>
> ---
> drivers/input/keyboard/bf54x-keys.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/input/keyboard/bf54x-keys.c b/drivers/input/keyboard/bf54x-keys.c
> index 1928401..ee855c5 100644
> --- a/drivers/input/keyboard/bf54x-keys.c
> +++ b/drivers/input/keyboard/bf54x-keys.c
> @@ -209,8 +209,8 @@ static int __devinit bfin_kpad_probe(struct platform_device *pdev)
> goto out;
> }
>
> - if (!pdata->debounce_time || !pdata->debounce_time > MAX_MULT ||
> - !pdata->coldrive_time || !pdata->coldrive_time > MAX_MULT) {
> + if (!pdata->debounce_time || pdata->debounce_time > MAX_MULT ||
> + !pdata->coldrive_time || pdata->coldrive_time > MAX_MULT) {
What is this `pdata' thing from which the data comes?
It seems a bit rude to kill the driver when we've detected an error
which could easily be fixed up.
> printk(KERN_ERR DRV_NAME
> ": Invalid Debounce/Columdrive Time from pdata\n");
nit: a colon does not terminate a sentence.
This comment misspells "column".
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] Input: bf54x-keys: ! has a higher priority than >
2009-02-05 22:00 ` Andrew Morton
@ 2009-02-06 8:49 ` Hennerich, Michael
0 siblings, 0 replies; 3+ messages in thread
From: Hennerich, Michael @ 2009-02-06 8:49 UTC (permalink / raw)
To: Andrew Morton
Cc: dmitry.torokhov, linux-input, linux-kernel, roel.kluin,
michael.hennerich, cooloney
>From: Andrew Morton [mailto:akpm@linux-foundation.org]
>Sent: Thursday, February 05, 2009 11:01 PM
>Subject: Re: [PATCH] Input: bf54x-keys: ! has a higher priority than >
>
>On Thu, 5 Feb 2009 15:19:55 +0800
>Bryan Wu <cooloney@kernel.org> wrote:
>
>> From: Roel Kluin <roel.kluin@gmail.com>
>>
>> Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
>> Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
>> Signed-off-by: Bryan Wu <cooloney@kernel.org>
>> ---
>> drivers/input/keyboard/bf54x-keys.c | 4 ++--
>> 1 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/input/keyboard/bf54x-keys.c
>b/drivers/input/keyboard/bf54x-keys.c
>> index 1928401..ee855c5 100644
>> --- a/drivers/input/keyboard/bf54x-keys.c
>> +++ b/drivers/input/keyboard/bf54x-keys.c
>> @@ -209,8 +209,8 @@ static int __devinit bfin_kpad_probe(struct
>platform_device *pdev)
>> goto out;
>> }
>>
>> - if (!pdata->debounce_time || !pdata->debounce_time > MAX_MULT ||
>> - !pdata->coldrive_time || !pdata->coldrive_time > MAX_MULT) {
>> + if (!pdata->debounce_time || pdata->debounce_time > MAX_MULT ||
>> + !pdata->coldrive_time || pdata->coldrive_time > MAX_MULT) {
>
>What is this `pdata' thing from which the data comes?
Platform device data.
struct bfin_kpad_platform_data *pdata = pdev->dev.platform_data;
>
>It seems a bit rude to kill the driver when we've detected an error
>which could easily be fixed up.
It actually just prints the error and then uses some default value later
on.
>
>> printk(KERN_ERR DRV_NAME
>> ": Invalid Debounce/Columdrive Time from
pdata\n");
>
>nit: a colon does not terminate a sentence.
>
>This comment misspells "column".
Bryan will send a patch addressing this typo.
Best regards,
Michael
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-02-06 8:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-05 7:19 [PATCH] Input: bf54x-keys: ! has a higher priority than > Bryan Wu
2009-02-05 22:00 ` Andrew Morton
2009-02-06 8:49 ` Hennerich, Michael
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).