Merge tag 'dmaengine-5.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul...
[linux-block.git] / scripts / atomic / fallbacks / dec
1 cat <<EOF
2 static __always_inline ${ret}
3 arch_${atomic}_${pfx}dec${sfx}${order}(${atomic}_t *v)
4 {
5         ${retstmt}arch_${atomic}_${pfx}sub${sfx}${order}(1, v);
6 }
7 EOF