summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDawid Niedzwiecki <dn@semihalf.com>2020-10-07 12:13:52 +0200
committerCommit Bot <commit-bot@chromium.org>2020-10-27 09:35:49 +0000
commita05f7b9f469e7c171f4a737968ab5cbd11ba1253 (patch)
treeab128a89ce9206ca967ad104e307d6c0b4c33a52 /test
parent3cba51e9e807e7015d81c2891c47ea4c59587a1c (diff)
downloadchrome-ec-a05f7b9f469e7c171f4a737968ab5cbd11ba1253.tar.gz
tree: Use new atomic_* implementation
It is done as a part of porting to Zephyr. Since the implementation of atomic functions is done for all architectures use atomic_* instead of deprecated_atomic_*. Sometimes there was a compilation error "discards 'volatile' qualifier" due to dropping "volatile" in the argument of the functions, thus some pointers casts need to be made. It shouldn't cause any issues, because we are sure about generated asm (store operation will be performed). BUG=b:169151160 BRANCH=none TEST=buildall Signed-off-by: Dawid Niedzwiecki <dn@semihalf.com> Change-Id: I98f590c323c3af52035e62825e8acfa358e0805a Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2478949 Tested-by: Jett Rink <jettrink@chromium.org> Reviewed-by: Jett Rink <jettrink@chromium.org> Reviewed-by: Tom Hughes <tomhughes@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/stm32f_rtc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/stm32f_rtc.c b/test/stm32f_rtc.c
index 7eb1930892..fc1d0aaedb 100644
--- a/test/stm32f_rtc.c
+++ b/test/stm32f_rtc.c
@@ -13,7 +13,7 @@ static const int rtc_delay_ms = 500;
/* Override default RTC interrupt handler */
void __rtc_alarm_irq(void)
{
- deprecated_atomic_add(&rtc_fired, 1);
+ atomic_add(&rtc_fired, 1);
reset_rtc_alarm(&rtc_irq);
}
@@ -29,7 +29,7 @@ test_static int test_rtc_alarm(void)
msleep(2 * rtc_delay_ms);
/* Make sure the interrupt fired exactly once. */
- TEST_EQ(1, deprecated_atomic_read_clear(&rtc_fired), "%d");
+ TEST_EQ(1, atomic_read_clear(&rtc_fired), "%d");
rtc_diff_us = get_rtc_diff(&rtc, &rtc_irq);