Release 4.9 arch/parisc/include/asm/delay.h
#ifndef _ASM_PARISC_DELAY_H
#define _ASM_PARISC_DELAY_H
static __inline__ void __delay(unsigned long loops) {
asm volatile(
" .balignl 64,0x34000034\n"
" addib,UV -1,%0,.\n"
" nop\n"
: "=r" (loops) : "0" (loops));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
pre-git | pre-git | 13 | 92.86% | 1 | 50.00% |
matthew wilcox | matthew wilcox | 1 | 7.14% | 1 | 50.00% |
| Total | 14 | 100.00% | 2 | 100.00% |
extern void __udelay(unsigned long usecs);
extern void __udelay_bad(unsigned long usecs);
static inline void udelay(unsigned long usecs)
{
if (__builtin_constant_p(usecs) && (usecs) > 20000)
__udelay_bad(usecs);
__udelay(usecs);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
helge deller | helge deller | 19 | 55.88% | 1 | 50.00% |
pre-git | pre-git | 15 | 44.12% | 1 | 50.00% |
| Total | 34 | 100.00% | 2 | 100.00% |
#endif /* _ASM_PARISC_DELAY_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
pre-git | pre-git | 41 | 54.67% | 1 | 33.33% |
helge deller | helge deller | 33 | 44.00% | 1 | 33.33% |
matthew wilcox | matthew wilcox | 1 | 1.33% | 1 | 33.33% |
| Total | 75 | 100.00% | 3 | 100.00% |