diff options
| author | Colin Ian King <colin.king@canonical.com> | 2016-09-12 09:19:17 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-13 11:24:24 -0400 |
| commit | f409440703f302791f7ee209c4214d22ff9b7ec6 (patch) | |
| tree | c732325ca7b139c471dccbe7642e740ec665b6e5 /drivers/usb/wusbcore | |
| parent | efbe27b3cf604effa77ab7e23a359e64fee06998 (diff) | |
USB: wusbcore: add in missing white space in error message text
A dev_err message spans two lines and the literal string is missing
a white space between words. Add the white space and reformat the
message to not span multiple lines.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/wusbcore')
| -rw-r--r-- | drivers/usb/wusbcore/cbaf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/wusbcore/cbaf.c b/drivers/usb/wusbcore/cbaf.c index da1b872918b5..fb70cbef0671 100644 --- a/drivers/usb/wusbcore/cbaf.c +++ b/drivers/usb/wusbcore/cbaf.c | |||
| @@ -610,8 +610,7 @@ static int cbaf_probe(struct usb_interface *iface, | |||
| 610 | cbaf->usb_iface = usb_get_intf(iface); | 610 | cbaf->usb_iface = usb_get_intf(iface); |
| 611 | result = cbaf_check(cbaf); | 611 | result = cbaf_check(cbaf); |
| 612 | if (result < 0) { | 612 | if (result < 0) { |
| 613 | dev_err(dev, "This device is not WUSB-CBAF compliant" | 613 | dev_err(dev, "This device is not WUSB-CBAF compliant and is not supported yet.\n"); |
| 614 | "and is not supported yet.\n"); | ||
| 615 | goto error_check; | 614 | goto error_check; |
| 616 | } | 615 | } |
| 617 | 616 | ||
