-
Notifications
You must be signed in to change notification settings - Fork 328
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
target/riscv: single DMI accesses via batch #1100
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
en-sc
force-pushed
the
en-sc/single-as-batch
branch
from
July 4, 2024 09:24
15d3f8d
to
1ee2a6d
Compare
en-sc
force-pushed
the
en-sc/single-as-batch
branch
from
July 9, 2024 12:12
1ee2a6d
to
3ea4b46
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the patch. This is a big improvement.
I have a suggestion for you to consider, please take a look.
JanMatCodasip
previously approved these changes
Jul 10, 2024
en-sc
force-pushed
the
en-sc/single-as-batch
branch
from
July 10, 2024 10:41
3ea4b46
to
0a8668c
Compare
JanMatCodasip
previously approved these changes
Jul 10, 2024
MarekVCodasip
previously approved these changes
Jul 11, 2024
en-sc
dismissed stale reviews from MarekVCodasip and JanMatCodasip
July 12, 2024 11:18
The merge-base changed after approval.
* Eliminates the use of VLA, which is prohibited by `doc/manual /style.txt`: Link: https://github.com/riscv-collab/riscv-openocd/blob/c6bb902629924eb66aae2a08c0ab8654261c9d71/doc/manual/style.txt#L164-L166 * Unifies DMI access interface. * Reduces code duplication. Change-Id: I2d7b0595f171e21062049ff61f76fb5a3c992d11 Signed-off-by: Evgeniy Naydanov <evgeniy.naydanov@syntacore.com>
en-sc
force-pushed
the
en-sc/single-as-batch
branch
from
July 16, 2024 13:44
0a8668c
to
9a489be
Compare
JanMatCodasip
approved these changes
Jul 17, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Eliminates the use of VLA, which is prohibited by
doc/manual/style.txt
:Link:
riscv-openocd/doc/manual/style.txt
Lines 164 to 166 in c6bb902
Unifies DMI access interface.
Reduces code duplication.
Requires: #1099, #1083