Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1508210 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2016-10-25 13:10 +0200 |
| Last post | 2016-10-25 18:50 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] input: pxa27x_keypad: fix typo "debpunce" -> "debounce" Colin King <colin.king@canonical.com> - 2016-10-25 13:10 +0200
Re: [PATCH] input: pxa27x_keypad: fix typo "debpunce" -> "debounce" Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2016-10-25 18:50 +0200
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2016-10-25 13:10 +0200 |
| Subject | [PATCH] input: pxa27x_keypad: fix typo "debpunce" -> "debounce" |
| Message-ID | <sw7Me-4N9-29@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com>
Trivial fix to typo in dev_err message
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/input/keyboard/pxa27x_keypad.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/input/keyboard/pxa27x_keypad.c b/drivers/input/keyboard/pxa27x_keypad.c
index fcef5d1..e244433 100644
--- a/drivers/input/keyboard/pxa27x_keypad.c
+++ b/drivers/input/keyboard/pxa27x_keypad.c
@@ -316,7 +316,7 @@ static int pxa27x_keypad_build_keycode_from_dt(struct pxa27x_keypad *keypad)
error = of_property_read_u32(np, "marvell,debounce-interval",
&pdata->debounce_interval);
if (error) {
- dev_err(dev, "failed to parse debpunce-interval\n");
+ dev_err(dev, "failed to parse debounce-interval\n");
return error;
}
--
2.9.3
[toc] | [next] | [standalone]
| From | Dmitry Torokhov <dmitry.torokhov@gmail.com> |
|---|---|
| Date | 2016-10-25 18:50 +0200 |
| Message-ID | <swd5g-8aC-45@gated-at.bofh.it> |
| In reply to | #1508210 |
On Tue, Oct 25, 2016 at 12:03:12PM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> Trivial fix to typo in dev_err message
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Applied, thank you.
> ---
> drivers/input/keyboard/pxa27x_keypad.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/input/keyboard/pxa27x_keypad.c b/drivers/input/keyboard/pxa27x_keypad.c
> index fcef5d1..e244433 100644
> --- a/drivers/input/keyboard/pxa27x_keypad.c
> +++ b/drivers/input/keyboard/pxa27x_keypad.c
> @@ -316,7 +316,7 @@ static int pxa27x_keypad_build_keycode_from_dt(struct pxa27x_keypad *keypad)
> error = of_property_read_u32(np, "marvell,debounce-interval",
> &pdata->debounce_interval);
> if (error) {
> - dev_err(dev, "failed to parse debpunce-interval\n");
> + dev_err(dev, "failed to parse debounce-interval\n");
> return error;
> }
>
> --
> 2.9.3
>
--
Dmitry
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web