aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts/atomic/fallbacks/fence
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/atomic/fallbacks/fence')
-rwxr-xr-xscripts/atomic/fallbacks/fence4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/atomic/fallbacks/fence b/scripts/atomic/fallbacks/fence
index 92a3a4691bab..3764fc8ce945 100755
--- a/scripts/atomic/fallbacks/fence
+++ b/scripts/atomic/fallbacks/fence
@@ -1,10 +1,10 @@
cat <<EOF
static __always_inline ${ret}
-${atomic}_${pfx}${name}${sfx}(${params})
+${arch}${atomic}_${pfx}${name}${sfx}(${params})
{
${ret} ret;
__atomic_pre_full_fence();
- ret = ${atomic}_${pfx}${name}${sfx}_relaxed(${args});
+ ret = ${arch}${atomic}_${pfx}${name}${sfx}_relaxed(${args});
__atomic_post_full_fence();
return ret;
}