/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _SPARC_SWAB_H #define _SPARC_SWAB_H #include <linux/types.h> #include <asm/asi.h> #if defined(__sparc__) && defined(__arch64__)
static inline __u16 __arch_swab16p(const __u16 *addr) { __u16 ret; __asm__ __volatile__ ("lduha [%2] %3, %0" : "=r" (ret) : "m" (*addr), "r" (addr), "i" (ASI_PL)); return ret; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Harvey Harrison | 20 | 95.24% | 1 | 50.00% |
David S. Miller | 1 | 4.76% | 1 | 50.00% |
Total | 21 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Harvey Harrison | 20 | 95.24% | 1 | 50.00% |
David S. Miller | 1 | 4.76% | 1 | 50.00% |
Total | 21 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Harvey Harrison | 20 | 95.24% | 1 | 50.00% |
David S. Miller | 1 | 4.76% | 1 | 50.00% |
Total | 21 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Harvey Harrison | 106 | 96.36% | 1 | 33.33% |
David S. Miller | 3 | 2.73% | 1 | 33.33% |
Greg Kroah-Hartman | 1 | 0.91% | 1 | 33.33% |
Total | 110 | 100.00% | 3 | 100.00% |