usb: dwc3: gadget: rely on sg_is_last() and list_is_last()

sg_is_last() and list_is_last() will encode the
required information for the driver to make
decisions WRT CHN and LST bits.

While at that, also replace '1' with 'true' for
consistency.

Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
This commit is contained in:
Felipe Balbi 2016-05-13 10:07:47 +03:00
parent 4fae2e3e15
commit 6aff483295
1 changed files with 5 additions and 5 deletions

View File

@ -940,10 +940,10 @@ static void dwc3_prepare_trbs(struct dwc3_ep *dep)
length = sg_dma_len(s); length = sg_dma_len(s);
dma = sg_dma_address(s); dma = sg_dma_address(s);
if (i == (request->num_mapped_sgs - 1) || if (sg_is_last(s)) {
sg_is_last(s)) { if (list_is_last(&req->list, &dep->pending_list))
if (list_empty(&dep->pending_list))
last_one = true; last_one = true;
chain = false; chain = false;
} }
@ -969,11 +969,11 @@ static void dwc3_prepare_trbs(struct dwc3_ep *dep)
trbs_left--; trbs_left--;
if (!trbs_left) if (!trbs_left)
last_one = 1; last_one = true;
/* Is this the last request? */ /* Is this the last request? */
if (list_is_last(&req->list, &dep->pending_list)) if (list_is_last(&req->list, &dep->pending_list))
last_one = 1; last_one = true;
dwc3_prepare_one_trb(dep, req, dma, length, dwc3_prepare_one_trb(dep, req, dma, length,
last_one, false, 0); last_one, false, 0);