USB: legousbtower: drop superfluous newlines
authorJohan Hovold <johan@kernel.org>
Tue, 5 Nov 2019 08:41:52 +0000 (09:41 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 7 Nov 2019 10:17:55 +0000 (11:17 +0100)
Drop some superfluous newlines before conditionals which made the code
harder to read.

Signed-off-by: Johan Hovold <johan@kernel.org>
Link: https://lore.kernel.org/r/20191105084152.16322-15-johan@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/legousbtower.c

index 6b7ea80d58760e244440222680677cd4be05779e..ab4b98b04115849a52c97ae39cc2531c21567fc1 100644 (file)
@@ -312,7 +312,6 @@ static int tower_open(struct inode *inode, struct file *file)
        int result;
 
        reset_reply = kmalloc(sizeof(*reset_reply), GFP_KERNEL);
-
        if (!reset_reply) {
                retval = -ENOMEM;
                goto exit;
@@ -322,7 +321,6 @@ static int tower_open(struct inode *inode, struct file *file)
        subminor = iminor(inode);
 
        interface = usb_find_interface(&tower_driver, subminor);
-
        if (!interface) {
                pr_err("error, can't find device for minor %d\n", subminor);
                retval = -ENODEV;
@@ -409,7 +407,6 @@ static int tower_release(struct inode *inode, struct file *file)
        int retval = 0;
 
        dev = file->private_data;
-
        if (dev == NULL) {
                retval = -ENODEV;
                goto exit;
@@ -802,7 +799,6 @@ static int tower_probe(struct usb_interface *interface, const struct usb_device_
        dev->interrupt_out_interval = interrupt_out_interval ? interrupt_out_interval : dev->interrupt_out_endpoint->bInterval;
 
        get_version_reply = kmalloc(sizeof(*get_version_reply), GFP_KERNEL);
-
        if (!get_version_reply) {
                retval = -ENOMEM;
                goto error;
@@ -835,7 +831,6 @@ static int tower_probe(struct usb_interface *interface, const struct usb_device_
        usb_set_intfdata(interface, dev);
 
        retval = usb_register_dev(interface, &tower_class);
-
        if (retval) {
                /* something prevented us from registering this driver */
                dev_err(idev, "Not able to get a minor for this device.\n");