* [PATCH] synaptics_usb: Remove TrackPoint name trailing whitespace
@ 2012-07-06 17:28 Bob Ross
2012-07-08 0:52 ` Dmitry Torokhov
0 siblings, 1 reply; 2+ messages in thread
From: Bob Ross @ 2012-07-06 17:28 UTC (permalink / raw)
To: Dmitry Torokhov, Jan Steinhoff, Jiri Kosina, linux-input,
linux-kernel
The USB TrackPoint name string contains a space at the trailing end that
can cause confusion/difficulty when creating udev rules. Example:
"Synaptics Inc. Composite TouchPad / TrackPoint (Stick) "
This patch removes the trailing space.
Signed-off-by: Bob Ross <pigiron@gmx.com>
---
This patch was based from the "torvalds" git tree.
drivers/input/mouse/synaptics_usb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/input/mouse/synaptics_usb.c b/drivers/input/mouse/synaptics_usb.c
index 3c5eaaa..64cf34e 100644
--- a/drivers/input/mouse/synaptics_usb.c
+++ b/drivers/input/mouse/synaptics_usb.c
@@ -364,7 +364,7 @@ static int synusb_probe(struct usb_interface *intf,
le16_to_cpu(udev->descriptor.idProduct));
if (synusb->flags & SYNUSB_STICK)
- strlcat(synusb->name, " (Stick) ", sizeof(synusb->name));
+ strlcat(synusb->name, " (Stick)", sizeof(synusb->name));
usb_make_path(udev, synusb->phys, sizeof(synusb->phys));
strlcat(synusb->phys, "/input0", sizeof(synusb->phys));
--
1.7.11
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] synaptics_usb: Remove TrackPoint name trailing whitespace
2012-07-06 17:28 [PATCH] synaptics_usb: Remove TrackPoint name trailing whitespace Bob Ross
@ 2012-07-08 0:52 ` Dmitry Torokhov
0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Torokhov @ 2012-07-08 0:52 UTC (permalink / raw)
To: Bob Ross; +Cc: Jan Steinhoff, Jiri Kosina, linux-input, linux-kernel
On Fri, Jul 06, 2012 at 12:28:17PM -0500, Bob Ross wrote:
>
> The USB TrackPoint name string contains a space at the trailing end that
> can cause confusion/difficulty when creating udev rules. Example:
>
> "Synaptics Inc. Composite TouchPad / TrackPoint (Stick) "
>
> This patch removes the trailing space.
>
> Signed-off-by: Bob Ross <pigiron@gmx.com>
Applied, thank you Bob.
> ---
> This patch was based from the "torvalds" git tree.
>
> drivers/input/mouse/synaptics_usb.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/input/mouse/synaptics_usb.c b/drivers/input/mouse/synaptics_usb.c
> index 3c5eaaa..64cf34e 100644
> --- a/drivers/input/mouse/synaptics_usb.c
> +++ b/drivers/input/mouse/synaptics_usb.c
> @@ -364,7 +364,7 @@ static int synusb_probe(struct usb_interface *intf,
> le16_to_cpu(udev->descriptor.idProduct));
>
> if (synusb->flags & SYNUSB_STICK)
> - strlcat(synusb->name, " (Stick) ", sizeof(synusb->name));
> + strlcat(synusb->name, " (Stick)", sizeof(synusb->name));
>
> usb_make_path(udev, synusb->phys, sizeof(synusb->phys));
> strlcat(synusb->phys, "/input0", sizeof(synusb->phys));
> --
> 1.7.11
>
--
Dmitry
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-07-08 0:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-06 17:28 [PATCH] synaptics_usb: Remove TrackPoint name trailing whitespace Bob Ross
2012-07-08 0:52 ` Dmitry Torokhov
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).