usb: misc: adutux: fix whitespace coding style issue
authorMalte Deiseroth <mdeiseroth88@gmail.com>
Fri, 16 Apr 2021 08:08:43 +0000 (10:08 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 22 Apr 2021 08:49:53 +0000 (10:49 +0200)
Correct missing space error ceckpatch.pl is complaining about.

Signed-off-by: Malte Deiseroth <mdeiseroth88@gmail.com>
Link: https://lore.kernel.org/r/20210416080843.GA137657@utop
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/adutux.c

index 45a3879..6d15a09 100644 (file)
@@ -183,10 +183,10 @@ static void adu_interrupt_in_callback(struct urb *urb)
                                dev->interrupt_in_buffer, urb->actual_length);
 
                        dev->read_buffer_length += urb->actual_length;
-                       dev_dbg(&dev->udev->dev,"%s reading  %d\n", __func__,
+                       dev_dbg(&dev->udev->dev, "%s reading  %d\n", __func__,
                                urb->actual_length);
                } else {
-                       dev_dbg(&dev->udev->dev,"%s : read_buffer overflow\n",
+                       dev_dbg(&dev->udev->dev, "%s : read_buffer overflow\n",
                                __func__);
                }
        }
@@ -726,7 +726,7 @@ static int adu_probe(struct usb_interface *interface,
                retval = -EIO;
                goto error;
        }
-       dev_dbg(&interface->dev,"serial_number=%s", dev->serial_number);
+       dev_dbg(&interface->dev, "serial_number=%s", dev->serial_number);
 
        /* we can register the device now, as it is ready */
        usb_set_intfdata(interface, dev);