Merge branch 'regmap-5.1' into regmap-linus
[linux-2.6-microblaze.git] / scripts / atomic / fallbacks / andnot
1 cat <<EOF
2 static inline ${ret}
3 ${atomic}_${pfx}andnot${sfx}${order}(${int} i, ${atomic}_t *v)
4 {
5         ${retstmt}${atomic}_${pfx}and${sfx}${order}(~i, v);
6 }
7 EOF