Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1675057 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2017-06-26 21:40 +0200 |
| Last post | 2017-06-27 09:50 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] HID: wacom:fix spelling mistake: "exising" -> "existing" Colin King <colin.king@canonical.com> - 2017-06-26 21:40 +0200
Re: [PATCH] HID: wacom:fix spelling mistake: "exising" -> "existing" Benjamin Tissoires <benjamin.tissoires@redhat.com> - 2017-06-27 09:40 +0200
Re: [PATCH] HID: wacom:fix spelling mistake: "exising" -> "existing" Jiri Kosina <jikos@kernel.org> - 2017-06-27 09:50 +0200
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2017-06-26 21:40 +0200 |
| Subject | [PATCH] HID: wacom:fix spelling mistake: "exising" -> "existing" |
| Message-ID | <tWI1A-6sb-21@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com> trivial fix to spelling mistake in hid_warn warning message Signed-off-by: Colin Ian King <colin.king@canonical.com> --- drivers/hid/wacom_wac.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/hid/wacom_wac.c b/drivers/hid/wacom_wac.c index 1992bb0732c2..9f940293ede4 100644 --- a/drivers/hid/wacom_wac.c +++ b/drivers/hid/wacom_wac.c @@ -2110,28 +2110,28 @@ static void wacom_wac_pen_event(struct hid_device *hdev, struct hid_field *field return; case WACOM_HID_WD_OFFSETLEFT: if (features->offset_left && value != features->offset_left) - hid_warn(hdev, "%s: overriding exising left offset " + hid_warn(hdev, "%s: overriding existing left offset " "%d -> %d\n", __func__, value, features->offset_left); features->offset_left = value; return; case WACOM_HID_WD_OFFSETRIGHT: if (features->offset_right && value != features->offset_right) - hid_warn(hdev, "%s: overriding exising right offset " + hid_warn(hdev, "%s: overriding existing right offset " "%d -> %d\n", __func__, value, features->offset_right); features->offset_right = value; return; case WACOM_HID_WD_OFFSETTOP: if (features->offset_top && value != features->offset_top) - hid_warn(hdev, "%s: overriding exising top offset " + hid_warn(hdev, "%s: overriding existing top offset " "%d -> %d\n", __func__, value, features->offset_top); features->offset_top = value; return; case WACOM_HID_WD_OFFSETBOTTOM: if (features->offset_bottom && value != features->offset_bottom) - hid_warn(hdev, "%s: overriding exising bottom offset " + hid_warn(hdev, "%s: overriding existing bottom offset " "%d -> %d\n", __func__, value, features->offset_bottom); features->offset_bottom = value; -- 2.11.0
[toc] | [next] | [standalone]
| From | Benjamin Tissoires <benjamin.tissoires@redhat.com> |
|---|---|
| Date | 2017-06-27 09:40 +0200 |
| Message-ID | <tWTgm-5HC-41@gated-at.bofh.it> |
| In reply to | #1675057 |
On Jun 26 2017 or thereabouts, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > trivial fix to spelling mistake in hid_warn warning message > > Signed-off-by: Colin Ian King <colin.king@canonical.com> > --- Looks good to me: Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Cheers, Benjamin > drivers/hid/wacom_wac.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/hid/wacom_wac.c b/drivers/hid/wacom_wac.c > index 1992bb0732c2..9f940293ede4 100644 > --- a/drivers/hid/wacom_wac.c > +++ b/drivers/hid/wacom_wac.c > @@ -2110,28 +2110,28 @@ static void wacom_wac_pen_event(struct hid_device *hdev, struct hid_field *field > return; > case WACOM_HID_WD_OFFSETLEFT: > if (features->offset_left && value != features->offset_left) > - hid_warn(hdev, "%s: overriding exising left offset " > + hid_warn(hdev, "%s: overriding existing left offset " > "%d -> %d\n", __func__, value, > features->offset_left); > features->offset_left = value; > return; > case WACOM_HID_WD_OFFSETRIGHT: > if (features->offset_right && value != features->offset_right) > - hid_warn(hdev, "%s: overriding exising right offset " > + hid_warn(hdev, "%s: overriding existing right offset " > "%d -> %d\n", __func__, value, > features->offset_right); > features->offset_right = value; > return; > case WACOM_HID_WD_OFFSETTOP: > if (features->offset_top && value != features->offset_top) > - hid_warn(hdev, "%s: overriding exising top offset " > + hid_warn(hdev, "%s: overriding existing top offset " > "%d -> %d\n", __func__, value, > features->offset_top); > features->offset_top = value; > return; > case WACOM_HID_WD_OFFSETBOTTOM: > if (features->offset_bottom && value != features->offset_bottom) > - hid_warn(hdev, "%s: overriding exising bottom offset " > + hid_warn(hdev, "%s: overriding existing bottom offset " > "%d -> %d\n", __func__, value, > features->offset_bottom); > features->offset_bottom = value; > -- > 2.11.0 >
[toc] | [prev] | [next] | [standalone]
| From | Jiri Kosina <jikos@kernel.org> |
|---|---|
| Date | 2017-06-27 09:50 +0200 |
| Subject | Re: [PATCH] HID: wacom:fix spelling mistake: "exising" -> "existing" |
| Message-ID | <tWTq2-5LM-15@gated-at.bofh.it> |
| In reply to | #1675057 |
On Mon, 26 Jun 2017, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > trivial fix to spelling mistake in hid_warn warning message > > Signed-off-by: Colin Ian King <colin.king@canonical.com> Applied to for-4.13/wacom. -- Jiri Kosina SUSE Labs
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web