Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Colin Ian King and committed by
Greg Kroah-Hartman
f4094407 efbe27b3

+1 -2
+1 -2
drivers/usb/wusbcore/cbaf.c
··· 610 610 cbaf->usb_iface = usb_get_intf(iface); 611 611 result = cbaf_check(cbaf); 612 612 if (result < 0) { 613 - dev_err(dev, "This device is not WUSB-CBAF compliant" 614 - "and is not supported yet.\n"); 613 + dev_err(dev, "This device is not WUSB-CBAF compliant and is not supported yet.\n"); 615 614 goto error_check; 616 615 } 617 616