-
Notifications
You must be signed in to change notification settings - Fork 7.2k
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
devicetree: make DT_..._REG_ADDR return unsigned #78766
devicetree: make DT_..._REG_ADDR return unsigned #78766
Conversation
1242e55
to
52ba330
Compare
1658d64
to
542ebde
Compare
884ac72
a8b98dc
to
884ac72
Compare
|
884ac72
to
ebe92e3
Compare
@fabiobaltieri rebase needed |
`DT_..._REG_ADDR` macros do not always return an unsigned value. This commit adds and unsigned 32bit prefix to ensure the value is always unsigned. Signed-off-by: Jeppe Odgaard <jeppe.odgaard@prevas.dk> Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
cc04d7f
ebe92e3
to
cc04d7f
Compare
Merge conflict, rebased, I dropped the flash_simulator commit entirely as the validation code has been changed and I think the casting is not needed anymore, hang on for the CI run (can't recall what platform/combo test was failing specifically) will reapply if it's still a problem. |
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.
CI seems happy :)
hurray! |
DT_..._REG_ADDR
macros do not always return an unsigned value. This commit adds and unsigned 32bit prefix to ensure the value is always unsigned.More context:
Picking up from #70761