[PATCH] USBIP:stub_dev.c fixing string splitted into multiple line issue

Kumar Gaurav kumargauravgupta3 at gmail.com
Wed Jul 31 17:48:42 UTC 2013


Fixed  String splitted into multiple line issue using macro

Signed-off-by: Kumar Gaurav <kumargauravgupta3 at gmail.com>
---
 drivers/staging/usbip/stub_dev.c |   17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/drivers/staging/usbip/stub_dev.c b/drivers/staging/usbip/stub_dev.c
index 83d629a..3b881e1 100644
--- a/drivers/staging/usbip/stub_dev.c
+++ b/drivers/staging/usbip/stub_dev.c
@@ -30,6 +30,8 @@
  * In most cases, wildcard matching will be okay because driver binding can be
  * changed dynamically by a userland program.
  */
+#define USBIP_REG_INTF "register new interface (bus %u dev %u ifn %u)\n"
+#define USBIP_REG_DEV "register new device (bus %u dev %u ifn %u)\n"
 static struct usb_device_id stub_table[] = {
 #if 0
 	/* just an example */
@@ -357,8 +359,9 @@ static int stub_probe(struct usb_interface *interface,
 	busid_priv = get_busid_priv(udev_busid);
 	if (!busid_priv || (busid_priv->status == STUB_BUSID_REMOV) ||
 	    (busid_priv->status == STUB_BUSID_OTHER)) {
-		dev_info(&interface->dev, "%s is not in match_busid table... "
-			 "skip!\n", udev_busid);
+		dev_info(&interface->dev,
+			 "%s is not in match_busid table... skip!\n",
+			udev_busid);
 
 		/*
 		 * Return value should be ENODEV or ENOXIO to continue trying
@@ -386,8 +389,7 @@ static int stub_probe(struct usb_interface *interface,
 			return -ENODEV;
 
 		busid_priv->interf_count++;
-		dev_info(&interface->dev, "usbip-host: register new interface "
-			 "(bus %u dev %u ifn %u)\n",
+		dev_info(&interface->dev, USBIP_REG_INTF,
 			 udev->bus->busnum, udev->devnum,
 			 interface->cur_altsetting->desc.bInterfaceNumber);
 
@@ -412,8 +414,8 @@ static int stub_probe(struct usb_interface *interface,
 	if (!sdev)
 		return -ENOMEM;
 
-	dev_info(&interface->dev, "usbip-host: register new device "
-		 "(bus %u dev %u ifn %u)\n", udev->bus->busnum, udev->devnum,
+	dev_info(&interface->dev, USBIP_REG_DEV,
+		 udev->bus->busnum, udev->devnum,
 		 interface->cur_altsetting->desc.bInterfaceNumber);
 
 	busid_priv->interf_count = 0;
@@ -426,7 +428,8 @@ static int stub_probe(struct usb_interface *interface,
 
 	err = stub_add_files(&interface->dev);
 	if (err) {
-		dev_err(&interface->dev, "stub_add_files for %s\n", udev_busid);
+		dev_err(&interface->dev, "stub_add_files for %s\n",
+			udev_busid);
 		usb_set_intfdata(interface, NULL);
 		usb_put_intf(interface);
 		usb_put_dev(udev);
-- 
1.7.9.5



More information about the devel mailing list