[Backport v4.3-branch] Bluetooth: Controller: nrf54lx: Fix address resolution wait#103075
Open
github-actions[bot] wants to merge 1 commit intov4.3-branchfrom
Open
[Backport v4.3-branch] Bluetooth: Controller: nrf54lx: Fix address resolution wait#103075github-actions[bot] wants to merge 1 commit intov4.3-branchfrom
github-actions[bot] wants to merge 1 commit intov4.3-branchfrom
Conversation
igiona
reviewed
Feb 2, 2026
| * For all other platforms, interrupt on END is enabled by the caller of this | ||
| * function, we will be woken up when the EVENTS_END occurs. | ||
| */ | ||
| if (!IS_ENABLED(CONFIG_SOC_SERIES_NRF54L)) { |
There was a problem hiding this comment.
On my v4.3 (tag) based FW, this has to be:
Suggested change
| if (!IS_ENABLED(CONFIG_SOC_SERIES_NRF54L)) { | |
| if (!IS_ENABLED(CONFIG_SOC_SERIES_NRF54LX)) { |
Not sure if the backport branch already has other patches that do change this k-config name?
Contributor
There was a problem hiding this comment.
Sorry, this PR got out of my radar... will fix the issue and push to this branch...
Member
|
Retriggered CI. |
Fix address resolution wait to not be infinite loop and instead exit with a reasonable count down value. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no> (cherry picked from commit bd77884)
c9fb21c to
3578960
Compare
cvinayak
approved these changes
Mar 1, 2026
|
This file contains hidden or 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
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.



Backport bd77884 from #100214.
Fixes #100101