public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Thomas Dahlmann <dahlmann.thomas@arcor.de>
To: Nicholas Krause <xerofoify@gmail.com>
Cc: balbi@ti.com, linux-geode@lists.infradead.org,
	linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] udc:Remove no longer required varaiable in the function udc_set_halt
Date: Fri, 24 Jul 2015 11:05:20 +0200	[thread overview]
Message-ID: <55B1FFD0.5070607@arcor.de> (raw)
In-Reply-To: <1435430744-15968-1-git-send-email-xerofoify@gmail.com>

ACK and thanks! for your patches.


Am 6/27/2015 8:45 PM, schrieb Nicholas Krause:
> This removes the no longer required variable retval in the function
> udc_set_halt now due to this variable never being set to a return
> value after calling another function inside the function udc_set_halt
> and only being used unchanged at the end of this function's body.
> Due to this remove the no longer required variable retval and return
> the value zero directly if we arrive at the end of this particular
> function's body without any internal errors occurring.
>
> Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
> ---
>   drivers/usb/gadget/udc/amd5536udc.c | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/usb/gadget/udc/amd5536udc.c b/drivers/usb/gadget/udc/amd5536udc.c
> index de7e5e2..5b99e53 100644
> --- a/drivers/usb/gadget/udc/amd5536udc.c
> +++ b/drivers/usb/gadget/udc/amd5536udc.c
> @@ -1307,7 +1307,6 @@ udc_set_halt(struct usb_ep *usbep, int halt)
>   	struct udc_ep	*ep;
>   	u32 tmp;
>   	unsigned long iflags;
> -	int retval = 0;
>   
>   	if (!usbep)
>   		return -EINVAL;
> @@ -1360,7 +1359,7 @@ udc_set_halt(struct usb_ep *usbep, int halt)
>   		}
>   	}
>   	spin_unlock_irqrestore(&udc_stall_spinlock, iflags);
> -	return retval;
> +	return 0;
>   }
>   
>   /* gadget interface */


           reply	other threads:[~2015-07-24  9:01 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <1435430744-15968-1-git-send-email-xerofoify@gmail.com>]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55B1FFD0.5070607@arcor.de \
    --to=dahlmann.thomas@arcor.de \
    --cc=balbi@ti.com \
    --cc=linux-geode@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=xerofoify@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox