Sorry for the late reply. I had overlooked this.

Am 08.11.2006 15:34 schrieb Mariusz Kozlowski:
> Hello,
> 
> - usb_free_urb() cleanup
> - usb_kill_urb() cleanup
> 
> Signed-off-by: Mariusz Kozlowski <[EMAIL PROTECTED]>

Acked-by: Tilman Schmidt <[EMAIL PROTECTED]>

> --- linux-2.6.19-rc4-orig/drivers/isdn/gigaset/usb-gigaset.c  2006-11-06 
> 17:07:30.000000000 +0100
> +++ linux-2.6.19-rc4/drivers/isdn/gigaset/usb-gigaset.c       2006-11-07 
> 16:51:17.000000000 +0100
> @@ -815,14 +815,11 @@ static int gigaset_probe(struct usb_inte
>       return 0;
>  
>  error:
> -     if (ucs->read_urb)
> -             usb_kill_urb(ucs->read_urb);
> +     usb_kill_urb(ucs->read_urb);
>       kfree(ucs->bulk_out_buffer);
> -     if (ucs->bulk_out_urb != NULL)
> -             usb_free_urb(ucs->bulk_out_urb);
> +     usb_free_urb(ucs->bulk_out_urb);
>       kfree(cs->inbuf[0].rcvbuf);
> -     if (ucs->read_urb != NULL)
> -             usb_free_urb(ucs->read_urb);
> +     usb_free_urb(ucs->read_urb);
>       usb_set_intfdata(interface, NULL);
>       ucs->read_urb = ucs->bulk_out_urb = NULL;
>       cs->inbuf[0].rcvbuf = ucs->bulk_out_buffer = NULL;
> @@ -850,11 +847,9 @@ static void gigaset_disconnect(struct us
>       usb_kill_urb(ucs->bulk_out_urb);        /* FIXME: only if active? */
>  
>       kfree(ucs->bulk_out_buffer);
> -     if (ucs->bulk_out_urb != NULL)
> -             usb_free_urb(ucs->bulk_out_urb);
> +     usb_free_urb(ucs->bulk_out_urb);
>       kfree(cs->inbuf[0].rcvbuf);
> -     if (ucs->read_urb != NULL)
> -             usb_free_urb(ucs->read_urb);
> +     usb_free_urb(ucs->read_urb);
>       ucs->read_urb = ucs->bulk_out_urb = NULL;
>       cs->inbuf[0].rcvbuf = ucs->bulk_out_buffer = NULL;


-- 
Tilman Schmidt                          E-Mail: [EMAIL PROTECTED]
Bonn, Germany
Diese Nachricht besteht zu 100% aus wiederverwerteten Bits.
Ungeöffnet mindestens haltbar bis: (siehe Rückseite)

Attachment: signature.asc
Description: OpenPGP digital signature

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
linux-usb-devel@lists.sourceforge.net
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to