From 9e0be0c61dc9a8dcb04a7011d075d1112d4d02c0 Mon Sep 17 00:00:00 2001 From: Tony Lindgren Date: Thu, 16 Aug 2007 01:19:01 -0700 Subject: [PATCH] musb_hdrc: Search and replace nBestEnd with best_end Search and replace nBestEnd with best_end Signed-off-by: Tony Lindgren --- drivers/usb/musb/musb_host.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c index 556d55b4d07..7a517748e64 100644 --- a/drivers/usb/musb/musb_host.c +++ b/drivers/usb/musb/musb_host.c @@ -1661,7 +1661,7 @@ static int musb_schedule( { int idle; int best_diff; - int nBestEnd, nEnd; + int best_end, nEnd; struct musb_hw_ep *hw_ep = NULL; struct list_head *head = NULL; @@ -1704,7 +1704,7 @@ static int musb_schedule( * there is none, and thus none of its complexity... */ best_diff = 4096; - nBestEnd = -1; + best_end = -1; for (nEnd = 1; nEnd < musb->nr_endpoints; nEnd++) { int diff; @@ -1722,16 +1722,16 @@ static int musb_schedule( if (diff > 0 && best_diff > diff) { best_diff = diff; - nBestEnd = nEnd; + best_end = nEnd; } } - if (nBestEnd < 0) + if (best_end < 0) return -ENOSPC; idle = 1; - hw_ep = musb->endpoints + nBestEnd; - musb->periodic[nBestEnd] = qh; - DBG(4, "qh %p periodic slot %d\n", qh, nBestEnd); + hw_ep = musb->endpoints + best_end; + musb->periodic[best_end] = qh; + DBG(4, "qh %p periodic slot %d\n", qh, best_end); success: qh->hw_ep = hw_ep; qh->hep->hcpriv = qh; -- 2.41.1