From: Julia Lawall Date: Thu, 3 Jul 2008 16:10:58 +0000 (-0400) Subject: Input: gtco - eliminate early return X-Git-Tag: v2.6.27-rc1~958^2~12 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f4bc95d7bd5d2e57d5a64b5bcd35928beb7026de;p=karo-tx-linux.git 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 Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/tablet/gtco.c b/drivers/input/tablet/gtco.c index 1e748e46d12e..b9b7a98bc5a5 100644 --- a/drivers/input/tablet/gtco.c +++ b/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); if (!gtco->urbinfo) { err("Failed to allocate URB"); - return -ENOMEM; + error = -ENOMEM; goto err_free_buf; }