Skip to content

Commit

Permalink
USB: legousbtower: drop superfluous newlines
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Johan Hovold authored and Greg Kroah-Hartman committed Nov 7, 2019
1 parent 3c84f4b commit c1f602d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions drivers/usb/misc/legousbtower.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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");
Expand Down

0 comments on commit c1f602d

Please sign in to comment.