It fixed one incorrect value issue for cdns ssp driver
-----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEDaZUZmFxRG/wNThrSFkpgVDWcbsFAmBP+doACgkQSFkpgVDW cbvz5wgAg0XyMtSvgFdJ2yFb9RdcCGFmKAE/tgLSGvL1t6O2JpVHegCoP+0Z20c7 xy885cDsIrPJDsx86enFnj2wHTLQClNQf9xtVlEDqV2X1SbpoiKgP93MdSw0lxQx Nda04Ffzrh/kHsKZlLgdzx+KPj7rGZQVM+q7gCqF477AfxCM0ngqcB62C8aR0ouX K3UO9RYPi75J+bKL84BDT6dJ/a9KnXjNR8fcPi0hwpLDJnWLSZTtM7pgbiAzB8OO 56ZwYJGF8+hGWvBbpUBSEBYF+w37RIfbEtyCXmKq6olNQ8+0ENNg6Jdl3uZbCfxZ k7KnC4/7SieaKdnJp8mi6XoqpjpXwA== =Tfla -----END PGP SIGNATURE----- Merge tag 'usb-v5.12-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb into usb-linus Peter writes: It fixed one incorrect value issue for cdns ssp driver * tag 'usb-v5.12-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb: usb: cdnsp: Fixes incorrect value in ISOC TRB
This commit is contained in:
commit
eb9238e537
|
@ -2197,7 +2197,10 @@ static int cdnsp_queue_isoc_tx(struct cdnsp_device *pdev,
|
|||
* inverted in the first TDs isoc TRB.
|
||||
*/
|
||||
field = TRB_TYPE(TRB_ISOC) | TRB_TLBPC(last_burst_pkt) |
|
||||
start_cycle ? 0 : 1 | TRB_SIA | TRB_TBC(burst_count);
|
||||
TRB_SIA | TRB_TBC(burst_count);
|
||||
|
||||
if (!start_cycle)
|
||||
field |= TRB_CYCLE;
|
||||
|
||||
/* Fill the rest of the TRB fields, and remaining normal TRBs. */
|
||||
for (i = 0; i < trbs_per_td; i++) {
|
||||
|
|
Loading…
Reference in New Issue