Release 4.14 arch/parisc/include/asm/delay.h
/* SPDX-License-Identifier: GPL-2.0 */
#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 |
Linus Torvalds (pre-git) | 13 | 92.86% | 1 | 50.00% |
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 | 19 | 55.88% | 1 | 50.00% |
Linus Torvalds (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 |
Linus Torvalds (pre-git) | 41 | 53.95% | 1 | 25.00% |
Helge Deller | 33 | 43.42% | 1 | 25.00% |
Matthew Wilcox | 1 | 1.32% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 1.32% | 1 | 25.00% |
Total | 76 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.