aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Senna Tschudin <peter.senna@gmail.com>2012-09-12 13:03:17 -0400
committerSarah Sharp <sarah.a.sharp@linux.intel.com>2012-09-13 18:50:03 -0400
commit261fa12be074f2731f727bfca372c9f727060196 (patch)
treea152dfe19a09b6fa649c12a15ccbdec6bd22c98a
parent3415fc94bba86b397f1fefec3c904bfc57de7038 (diff)
drivers/usb/host/xhci-ring.c: removes unnecessary semicolon
removes unnecessary semicolon Found by Coccinelle: http://coccinelle.lip6.fr/ Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com> Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
-rw-r--r--drivers/usb/host/xhci-ring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c
index 37e23ed1fe1e..f270e70559bd 100644
--- a/drivers/usb/host/xhci-ring.c
+++ b/drivers/usb/host/xhci-ring.c
@@ -2852,7 +2852,7 @@ static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring,
2852 xhci_err(xhci, "Ring expansion failed\n"); 2852 xhci_err(xhci, "Ring expansion failed\n");
2853 return -ENOMEM; 2853 return -ENOMEM;
2854 } 2854 }
2855 }; 2855 }
2856 2856
2857 if (enqueue_is_link_trb(ep_ring)) { 2857 if (enqueue_is_link_trb(ep_ring)) {
2858 struct xhci_ring *ring = ep_ring; 2858 struct xhci_ring *ring = ep_ring;