-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix wrong calculation of data_buffer_pointer of transfer::Normal #154
Fix wrong calculation of data_buffer_pointer of transfer::Normal #154
Conversation
This lint error does not originate from this pull request. Is it preferable to fix this lint error also in this pull request? |
I'll fix it in another PR. Sorry, but please wait for it. |
@lemolatoon Sorry, but please wait more time because passing the Clippy action is not completed yet due to a problem with the action itself. |
@toku-sa-n Thank you for maintaining this great crate! I am really helped. |
Thank you for waiting. Could you update the branch? |
84257de
to
9083305
Compare
Thank you! I'll upload a new version soon. |
Published as 0.9.2. |
As defined in xHCI Specification 6.4.1.1 Normal TRB ,
Normal TRB
's first 32bit isData Buffer Pointer Lo
, and next 32bit isData Buffer Pointer Hi
.Before this patch, the calculation of
Data Buffer Pointer
in Normal TRB is wrong. So I fixed it.Thank you.