]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
musb_hdrc: Search and replace bEndCount with nr_endpoints
authorTony Lindgren <tony@atomide.com>
Mon, 13 Aug 2007 10:23:34 +0000 (03:23 -0700)
committerTony Lindgren <tony@atomide.com>
Mon, 13 Aug 2007 10:23:34 +0000 (03:23 -0700)
Search and replace bEndCount with nr_endpoints

Signed-off-by: Tony Lindgren <tony@atomide.com>
drivers/usb/musb/musb_gadget.c
drivers/usb/musb/musb_host.c
drivers/usb/musb/musb_procfs.c
drivers/usb/musb/musbdefs.h
drivers/usb/musb/plat_uds.c

index 9d0910a229979bcb31b840a1e93925277e7a9397..cb445e0219b65c14d3a5bf5ccdf19a3f715dcfbd 100644 (file)
@@ -1601,7 +1601,7 @@ static inline void __init musb_g_init_endpoints(struct musb *musb)
        INIT_LIST_HEAD(&(musb->g.ep_list));
 
        for (bEnd = 0, hw_ep = musb->endpoints;
-                       bEnd < musb->bEndCount;
+                       bEnd < musb->nr_endpoints;
                        bEnd++, hw_ep++) {
                if (hw_ep->bIsSharedFifo /* || !bEnd */) {
                        init_peripheral_ep(musb, &hw_ep->ep_in, bEnd, 0);
@@ -1797,7 +1797,7 @@ stop_activity(struct musb *musb, struct usb_gadget_driver *driver)
         */
        if (driver) {
                for (i = 0, hw_ep = musb->endpoints;
-                               i < musb->bEndCount;
+                               i < musb->nr_endpoints;
                                i++, hw_ep++) {
                        MGC_SelectEnd(musb->mregs, i);
                        if (hw_ep->bIsSharedFifo /* || !bEnd */) {
index 3807c834014e82f917693f1f7c8ee4fc7332c977..6bcf67864aa4c38c4a1985b1342c2d6539e79f56 100644 (file)
@@ -1706,7 +1706,7 @@ static int musb_schedule(
        wBestDiff = 4096;
        nBestEnd = -1;
 
-       for (nEnd = 1; nEnd < musb->bEndCount; nEnd++) {
+       for (nEnd = 1; nEnd < musb->nr_endpoints; nEnd++) {
                int     diff;
 
                if (musb->periodic[nEnd])
index 58042b0870d3a6eda79e7534242e89e73e053ec6..357e03ad50f976f98b9959b3785e0ae45f127b1c 100644 (file)
@@ -528,7 +528,7 @@ static int dump_header_stats(struct musb *musb, char *buffer)
 #endif
                        ", debug=%d [eps=%d]\n",
                debug,
-               musb->bEndCount);
+               musb->nr_endpoints);
        if (code <= 0)
                goto done;
        count += code;
@@ -802,7 +802,7 @@ static int musb_proc_read(char *page, char **start,
 
        /* generate the report for the end points */
        // REVISIT ... not unless something's connected!
-       for (bEnd = 0; count >= 0 && bEnd < musb->bEndCount;
+       for (bEnd = 0; count >= 0 && bEnd < musb->nr_endpoints;
                        bEnd++) {
                code = dump_end_info(musb, bEnd, buffer, count);
                if (code > 0) {
index 141e8af4ea8aa85f63d5c1f41296ac1c1bb03db4..24f15848576782a90c738435540793f4482191ed 100644 (file)
@@ -403,7 +403,7 @@ struct musb {
 #define VBUSERR_RETRY_COUNT    3
        u16                     vbuserr_retry;
        u16 wEndMask;
-       u8 bEndCount;
+       u8 nr_endpoints;
 
        u8 board_mode;          /* enum musb_mode */
        int                     (*board_set_power)(int state);
index 54f555a49e5d724298f7fe42f3190f00f6c967a5..3b5713f643ffddaec47aabd0fad7ee9d80fcb361 100644 (file)
@@ -671,7 +671,7 @@ static irqreturn_t musb_stage2_irq(struct musb * musb, u8 bIntrUSB,
                /* start any periodic Tx transfers waiting for current frame */
                wFrame = musb_readw(mbase, MGC_O_HDRC_FRAME);
                ep = musb->endpoints;
-               for (bEnd = 1; (bEnd < musb->bEndCount)
+               for (bEnd = 1; (bEnd < musb->nr_endpoints)
                                        && (musb->wEndMask >= (1 << bEnd));
                                bEnd++, ep++) {
                        // FIXME handle framecounter wraps (12 bits)
@@ -1153,7 +1153,7 @@ static int __init ep_config_from_table(struct musb *musb)
                        return -EINVAL;
                }
                epn++;
-               musb->bEndCount = max(epn, musb->bEndCount);
+               musb->nr_endpoints = max(epn, musb->nr_endpoints);
        }
 
        printk(KERN_DEBUG "%s: %d/%d max ep, %d/%d memory\n",
@@ -1196,7 +1196,7 @@ static int __init ep_config_from_hw(struct musb *musb)
                        /* 0's returned when no more endpoints */
                        break;
                }
-               musb->bEndCount++;
+               musb->nr_endpoints++;
                musb->wEndMask |= (1 << bEnd);
 
                hw_ep->wMaxPacketSizeTx = 1 << (reg & 0x0f);
@@ -1338,7 +1338,7 @@ static int __init musb_core_init(u16 wType, struct musb *musb)
        musb->endpoints[0].wMaxPacketSizeRx = MGC_END0_FIFOSIZE;
 
        /* discover endpoint configuration */
-       musb->bEndCount = 1;
+       musb->nr_endpoints = 1;
        musb->wEndMask = 1;
 
        if (reg & MGC_M_CONFIGDATA_DYNFIFO) {
@@ -1361,7 +1361,7 @@ static int __init musb_core_init(u16 wType, struct musb *musb)
                return status;
 
        /* finish init, and print endpoint config */
-       for (i = 0; i < musb->bEndCount; i++) {
+       for (i = 0; i < musb->nr_endpoints; i++) {
                struct musb_hw_ep       *hw_ep = musb->endpoints + i;
 
                hw_ep->fifo = MUSB_FIFO_OFFSET(i) + mbase;