-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
drivers: mbox: mbox_esp32: fix mbox callback call #78517
Conversation
Not sure why this was merged this way, fortunately my local copy had the correct code. |
Would you mind running clang-format in this file to fix the macro spaces? |
46771d5
to
f5fcda3
Compare
Fixes the mailbox notification callback that was not being called from the ISR when the other side sends something. Signed-off-by: Felipe Neves <ryukokki.felipe@gmail.com>
f5fcda3
to
bbae8a5
Compare
@sylvioalves just run the clang-format, PTAL again. |
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.
I just noticed this driver lacks taking IRQ priority and flags from DTS.
I'll submit a PR after yours gets merged
@raffarost i think when this driver got merged, the priority properties and flags were not present in the upstream yet. |
Fixes the mailbox notification callback that was not being called from the ISR when the other side sends something.