lkml.org 
[lkml]   [2019]   [Apr]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 4/6] usb: musb: Rename musb_start_urb() to musb_start_next_urb()
    Date
    In the following commit we introduce new musb_start_urb() function
    which will be able to start arbitrary urb. In order to have
    intuitive function names we rename musb_start_urb() to
    musb_start_next_urb().

    Signed-off-by: Matwey V. Kornilov <matwey@sai.msu.ru>
    ---
    drivers/usb/musb/musb_host.c | 8 ++++----
    1 file changed, 4 insertions(+), 4 deletions(-)

    diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c
    index 5d23c950a21b..3a202a2a521d 100644
    --- a/drivers/usb/musb/musb_host.c
    +++ b/drivers/usb/musb/musb_host.c
    @@ -213,7 +213,7 @@ static struct musb_qh *musb_ep_get_qh(struct musb_hw_ep *ep, int is_in)
    * Context: controller locked, irqs blocked
    */
    static void
    -musb_start_urb(struct musb *musb, int is_in, struct musb_qh *qh)
    +musb_start_next_urb(struct musb *musb, int is_in, struct musb_qh *qh)
    {
    u32 len;
    void __iomem *mbase = musb->mregs;
    @@ -403,7 +403,7 @@ static void musb_advance_schedule(struct musb *musb, struct urb *urb,
    if (qh != NULL && qh->is_ready) {
    musb_dbg(musb, "... next ep%d %cX urb %p",
    hw_ep->epnum, is_in ? 'R' : 'T', next_urb(qh));
    - musb_start_urb(musb, is_in, qh);
    + musb_start_next_urb(musb, is_in, qh);
    }
    }

    @@ -1001,7 +1001,7 @@ static void musb_bulk_nak_timeout(struct musb *musb, struct musb_hw_ep *ep,
    }

    if (next_qh)
    - musb_start_urb(musb, is_in, next_qh);
    + musb_start_next_urb(musb, is_in, next_qh);
    }
    }

    @@ -2141,7 +2141,7 @@ static int musb_schedule(
    qh->hw_ep = hw_ep;
    qh->hep->hcpriv = qh;
    if (idle)
    - musb_start_urb(musb, is_in, qh);
    + musb_start_next_urb(musb, is_in, qh);
    return 0;
    }

    --
    2.16.4
    \
     
     \ /
      Last update: 2019-04-03 21:27    [W:4.100 / U:0.108 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site