-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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: rtc: sam: Fix missing function #81456
Merged
mmahadevan108
merged 1 commit into
zephyrproject-rtos:main
from
nandojve:sam/rtc_hot_fix
Nov 15, 2024
Merged
drivers: rtc: sam: Fix missing function #81456
mmahadevan108
merged 1 commit into
zephyrproject-rtos:main
from
nandojve:sam/rtc_hot_fix
Nov 15, 2024
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
The zephyrproject-rtos#64939 introduced a few convenience function like rtc_utils_validate_rtc_time. However the PR did not replace all occurrences which result on a build error. This add the missing header include to remove a building warning and replace the old function by the new one. Fixes zephyrproject-rtos#81454 Signed-off-by: Gerson Fernando Budke <[email protected]>
nandojve
added
Hotfix
Fix for issues blocking development, i.e. CI issues, tests failing in CI, etc.
Trivial
Changes that can be reviewed by anyone, i.e. doc changes, minor build system tweaks, etc.
labels
Nov 15, 2024
zephyrbot
added
area: RTC
Real Time Clock
platform: Microchip SAM
Microchip SAM Platform (formerly Atmel SAM)
labels
Nov 15, 2024
zephyrbot
requested review from
attie-argentum,
bjarki-andreasen,
mnkp,
pdgendt and
stephanosio
November 15, 2024 15:31
mmahadevan108
approved these changes
Nov 15, 2024
pdgendt
approved these changes
Nov 15, 2024
bjarki-andreasen
approved these changes
Nov 15, 2024
nandojve
added a commit
to nandojve/zephyr
that referenced
this pull request
Nov 17, 2024
The zephyrproject-rtos#81456 fixed the driver issue related to issue zephyrproject-rtos#81454. This add the RTC configurations on sam_v71_xult board to enable test coverage. Fixes zephyrproject-rtos#81454 Signed-off-by: Gerson Fernando Budke <[email protected]>
nandojve
added a commit
to nandojve/zephyr
that referenced
this pull request
Nov 23, 2024
The zephyrproject-rtos#81456 fixed the driver issue related to issue zephyrproject-rtos#81454. This add the RTC configurations on sam_v71_xult board to enable test coverage. Fixes zephyrproject-rtos#81454 Signed-off-by: Gerson Fernando Budke <[email protected]>
nandojve
added a commit
to nandojve/zephyr
that referenced
this pull request
Nov 23, 2024
The zephyrproject-rtos#81456 fixed the driver issue related to issue zephyrproject-rtos#81454. This add the RTC configurations on sam_v71_xult board to enable test coverage. Fixes zephyrproject-rtos#81454 Signed-off-by: Gerson Fernando Budke <[email protected]>
kartben
pushed a commit
that referenced
this pull request
Nov 27, 2024
The #81456 fixed the driver issue related to issue #81454. This add the RTC configurations on sam_v71_xult board to enable test coverage. Fixes #81454 Signed-off-by: Gerson Fernando Budke <[email protected]>
zephyrbot
pushed a commit
that referenced
this pull request
Nov 27, 2024
The #81456 fixed the driver issue related to issue #81454. This add the RTC configurations on sam_v71_xult board to enable test coverage. Fixes #81454 Signed-off-by: Gerson Fernando Budke <[email protected]> (cherry picked from commit cffb66f)
zephyrbot
pushed a commit
that referenced
this pull request
Nov 27, 2024
The #81456 fixed the driver issue related to issue #81454. This add the RTC configurations on sam_v71_xult board to enable test coverage. Fixes #81454 Signed-off-by: Gerson Fernando Budke <[email protected]> (cherry picked from commit cffb66f)
dkalowsk
pushed a commit
that referenced
this pull request
Dec 1, 2024
The #81456 fixed the driver issue related to issue #81454. This add the RTC configurations on sam_v71_xult board to enable test coverage. Fixes #81454 Signed-off-by: Gerson Fernando Budke <[email protected]> (cherry picked from commit cffb66f)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area: RTC
Real Time Clock
backport v3.7-branch
Request backport to the v3.7-branch
Hotfix
Fix for issues blocking development, i.e. CI issues, tests failing in CI, etc.
platform: Microchip SAM
Microchip SAM Platform (formerly Atmel SAM)
Trivial
Changes that can be reviewed by anyone, i.e. doc changes, minor build system tweaks, etc.
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.
The #64939 introduced a few convenience function like rtc_utils_validate_rtc_time. However the PR did not replace all occurrences which result on a build error. This add the missing header include to remove a building warning and replace the old function by the new one.
Fixes #81454