From: Alexander Shiyan <shc_work@mail.ru>
To: barebox@lists.infradead.org
Subject: [PATCH 2/3] gadget: at91: Fix uninitialized variable
Date: Mon, 21 Oct 2013 21:48:24 +0400 [thread overview]
Message-ID: <1382377705-15040-2-git-send-email-shc_work@mail.ru> (raw)
In-Reply-To: <1382377705-15040-1-git-send-email-shc_work@mail.ru>
Variable udc is used unitialized for DBG(xxx).
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
drivers/usb/gadget/at91_udc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/usb/gadget/at91_udc.c b/drivers/usb/gadget/at91_udc.c
index a11379c..acd9e44 100644
--- a/drivers/usb/gadget/at91_udc.c
+++ b/drivers/usb/gadget/at91_udc.c
@@ -414,6 +414,8 @@ static int at91_ep_queue(struct usb_ep *_ep,
req = container_of(_req, struct at91_request, req);
ep = container_of(_ep, struct at91_ep, ep);
+ udc = ep->udc;
+
if (!_req || !_req->complete
|| !_req->buf || !list_empty(&req->queue)) {
DBG(udc, "invalid request\n");
@@ -425,8 +427,6 @@ static int at91_ep_queue(struct usb_ep *_ep,
return -EINVAL;
}
- udc = ep->udc;
-
if (!udc || !udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
DBG(udc, "invalid device\n");
return -EINVAL;
--
1.8.1.5
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2013-10-21 17:49 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-21 17:48 [PATCH 1/3] calloc: Fix possible memory leak Alexander Shiyan
2013-10-21 17:48 ` Alexander Shiyan [this message]
2013-10-21 17:48 ` [PATCH 3/3] ubifs: Remove redundant assignment Alexander Shiyan
2013-10-22 6:52 ` [PATCH 1/3] calloc: Fix possible memory leak Sascha Hauer
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=1382377705-15040-2-git-send-email-shc_work@mail.ru \
--to=shc_work@mail.ru \
--cc=barebox@lists.infradead.org \
/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