Browse Source

Input: gtco - eliminate early return

There seems to be no reason why this error case should do less
cleaning up than the other adjacent ones, so the goto, which is
currently dead code, seems to be what is intended.

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Julia Lawall 17 years ago
parent
commit
f4bc95d7bd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/input/tablet/gtco.c

+ 1 - 1
drivers/input/tablet/gtco.c

@@ -863,7 +863,7 @@ static int gtco_probe(struct usb_interface *usbinterface,
 	gtco->urbinfo = usb_alloc_urb(0, GFP_KERNEL);
 	gtco->urbinfo = usb_alloc_urb(0, GFP_KERNEL);
 	if (!gtco->urbinfo) {
 	if (!gtco->urbinfo) {
 		err("Failed to allocate URB");
 		err("Failed to allocate URB");
-		return -ENOMEM;
+		error = -ENOMEM;
 		goto err_free_buf;
 		goto err_free_buf;
 	}
 	}