mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
atomics: Constify loads: riscv: Convert missed atomic_load_acq_64()
Reviewed by: kib
Fixes: 5e9a82e898d5 ("atomics: Constify loads")
MFC after: 4 days
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D48497
(cherry picked from commit 5bd31ad86adb5255e40e7d8ecfddd9e49c7004af)
This commit is contained in:
parent
e693092231
commit
d034ff89b8
1 changed files with 1 additions and 1 deletions
|
|
@ -569,7 +569,7 @@ ATOMIC_CMPSET_ACQ_REL(64);
|
|||
ATOMIC_FCMPSET_ACQ_REL(64);
|
||||
|
||||
static __inline uint64_t
|
||||
atomic_load_acq_64(volatile uint64_t *p)
|
||||
atomic_load_acq_64(const volatile uint64_t *p)
|
||||
{
|
||||
uint64_t ret;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue