diff options
author | Geyslan G. Bem <geyslan@gmail.com> | 2016-01-25 22:45:12 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-03 13:44:05 -0800 |
commit | 77d6554d1b40be5c522b0dc0dc0df5e164150753 (patch) | |
tree | a84683cd1f6ff5fe3356078ee68054ae82e834c2 | |
parent | 25d108696c00142a083c61dc5892856516d38c0d (diff) | |
download | op-kernel-dev-77d6554d1b40be5c522b0dc0dc0df5e164150753.zip op-kernel-dev-77d6554d1b40be5c522b0dc0dc0df5e164150753.tar.gz |
usb: host: ehci-sched: remove useless initializations
This patch removes useless initializations.
Tested by compilation only.
Caught by cppcheck.
Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/host/ehci-sched.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c index f4a94d4..b28ec83 100644 --- a/drivers/usb/host/ehci-sched.c +++ b/drivers/usb/host/ehci-sched.c @@ -2132,7 +2132,7 @@ sitd_patch( ) { struct ehci_iso_packet *uf = &iso_sched->packet [index]; - u64 bufp = uf->bufp; + u64 bufp; sitd->hw_next = EHCI_LIST_END(ehci); sitd->hw_fullspeed_ep = stream->address; @@ -2242,7 +2242,7 @@ static bool sitd_complete(struct ehci_hcd *ehci, struct ehci_sitd *sitd) struct urb *urb = sitd->urb; struct usb_iso_packet_descriptor *desc; u32 t; - int urb_index = -1; + int urb_index; struct ehci_iso_stream *stream = sitd->stream; struct usb_device *dev; bool retval = false; |