All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] USB: wusbcore: add in missing white space in error message text
@ 2016-09-12 13:01 Colin King
  2016-09-12 13:13 ` Sergei Shtylyov
  0 siblings, 1 reply; 2+ messages in thread
From: Colin King @ 2016-09-12 13:01 UTC (permalink / raw)
  To: Greg Kroah-Hartman, linux-usb; +Cc: linux-kernel

From: Colin Ian King <colin.king@canonical.com>

A dev_err message spans two lines and the literal string is missing
a white space between words. Add the white space.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/usb/wusbcore/cbaf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/wusbcore/cbaf.c b/drivers/usb/wusbcore/cbaf.c
index da1b872..62ade9f 100644
--- a/drivers/usb/wusbcore/cbaf.c
+++ b/drivers/usb/wusbcore/cbaf.c
@@ -610,7 +610,7 @@ static int cbaf_probe(struct usb_interface *iface,
 	cbaf->usb_iface = usb_get_intf(iface);
 	result = cbaf_check(cbaf);
 	if (result < 0) {
-		dev_err(dev, "This device is not WUSB-CBAF compliant"
+		dev_err(dev, "This device is not WUSB-CBAF compliant "
 			"and is not supported yet.\n");
 		goto error_check;
 	}
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] USB: wusbcore: add in missing white space in error message text
  2016-09-12 13:01 [PATCH] USB: wusbcore: add in missing white space in error message text Colin King
@ 2016-09-12 13:13 ` Sergei Shtylyov
  0 siblings, 0 replies; 2+ messages in thread
From: Sergei Shtylyov @ 2016-09-12 13:13 UTC (permalink / raw)
  To: Colin King, Greg Kroah-Hartman, linux-usb; +Cc: linux-kernel

On 9/12/2016 4:01 PM, Colin King wrote:

> From: Colin Ian King <colin.king@canonical.com>
>
> A dev_err message spans two lines and the literal string is missing
> a white space between words. Add the white space.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/usb/wusbcore/cbaf.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/usb/wusbcore/cbaf.c b/drivers/usb/wusbcore/cbaf.c
> index da1b872..62ade9f 100644
> --- a/drivers/usb/wusbcore/cbaf.c
> +++ b/drivers/usb/wusbcore/cbaf.c
> @@ -610,7 +610,7 @@ static int cbaf_probe(struct usb_interface *iface,
>  	cbaf->usb_iface = usb_get_intf(iface);
>  	result = cbaf_check(cbaf);
>  	if (result < 0) {
> -		dev_err(dev, "This device is not WUSB-CBAF compliant"
> +		dev_err(dev, "This device is not WUSB-CBAF compliant "
>  			"and is not supported yet.\n");

    The messages just shouldn't be broken up in order to facilitate grep'ping.

[...]

MBR, Sergei

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-09-12 13:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-12 13:01 [PATCH] USB: wusbcore: add in missing white space in error message text Colin King
2016-09-12 13:13 ` Sergei Shtylyov

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.