diff options
Diffstat (limited to 'scripts/atomic/fallbacks/xchg')
-rw-r--r-- | scripts/atomic/fallbacks/xchg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/atomic/fallbacks/xchg b/scripts/atomic/fallbacks/xchg index 733b8980b2f3..bdd788aa575f 100644 --- a/scripts/atomic/fallbacks/xchg +++ b/scripts/atomic/fallbacks/xchg @@ -1,7 +1,7 @@ cat <<EOF static __always_inline ${int} -arch_${atomic}_xchg${order}(${atomic}_t *v, ${int} new) +raw_${atomic}_xchg${order}(${atomic}_t *v, ${int} new) { - return arch_xchg${order}(&v->counter, new); + return raw_xchg${order}(&v->counter, new); } EOF |