Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6165cc51 authored by Elad Wexler's avatar Elad Wexler Committed by Greg Kroah-Hartman
Browse files

Staging: usbip: stub_dev: Fixed checkpatch warnings



Coding style issues

Signed-off-by: default avatarElad Wexler <eladwexler77@yahoo.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0e3633f6
Loading
Loading
Loading
Loading
+15 −11
Original line number Diff line number Diff line
@@ -357,8 +357,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
@@ -375,8 +376,10 @@ static int stub_probe(struct usb_interface *interface,
	}

	if (!strcmp(udev->bus->bus_name, "vhci_hcd")) {
		dev_dbg(&udev->dev, "%s is attached on vhci_hcd... skip!\n",
		dev_dbg(&udev->dev,
			"%s is attached on vhci_hcd... skip!\n",
			udev_busid);

		return -ENODEV;
	}

@@ -386,8 +389,8 @@ 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-host: register new interface (bus %u dev %u ifn %u)\n",
			udev->bus->busnum, udev->devnum,
			interface->cur_altsetting->desc.bInterfaceNumber);

@@ -412,8 +415,9 @@ 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-host: register new device (bus %u dev %u ifn %u)\n",
		udev->bus->busnum, udev->devnum,
		interface->cur_altsetting->desc.bInterfaceNumber);

	busid_priv->interf_count = 0;