lkml.org 
[lkml]   [2014]   [Aug]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH 4/4] usb: gadget: fix error return code
Date
Julia Lawall <Julia.Lawall@lip6.fr> writes:

> diff --git a/drivers/usb/gadget/udc/fusb300_udc.c b/drivers/usb/gadget/udc/fusb300_udc.c
> index d40255f..5c5d1ad 100644
> --- a/drivers/usb/gadget/udc/fusb300_udc.c
> +++ b/drivers/usb/gadget/udc/fusb300_udc.c
> @@ -1398,13 +1398,17 @@ static int fusb300_probe(struct platform_device *pdev)
>
> /* initialize udc */
> fusb300 = kzalloc(sizeof(struct fusb300), GFP_KERNEL);
> - if (fusb300 == NULL)
> + if (fusb300 == NULL) {
> + ret = -ENOMEM;
> goto clean_up;
> + }
>
> for (i = 0; i < FUSB300_MAX_NUM_EP; i++) {
> _ep[i] = kzalloc(sizeof(struct fusb300_ep), GFP_KERNEL);
> - if (_ep[i] == NULL)
> + if (_ep[i] == NULL) {
> + ret = -ENOMEM;
> goto clean_up;
> + }
> fusb300->ep[i] = _ep[i];
> }

Reviewed-by: Jeff Moyer <jmoyer@redhat.com>


\
 
 \ /
  Last update: 2014-08-08 00:01    [W:0.074 / U:0.556 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site