cregit-Linux how code gets into the kernel

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

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1392.86%150.00%
Matthew Wilcox17.14%150.00%
Total14100.00%2100.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

PersonTokensPropCommitsCommitProp
Helge Deller1955.88%150.00%
Linus Torvalds (pre-git)1544.12%150.00%
Total34100.00%2100.00%

#endif /* _ASM_PARISC_DELAY_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4153.95%125.00%
Helge Deller3343.42%125.00%
Matthew Wilcox11.32%125.00%
Greg Kroah-Hartman11.32%125.00%
Total76100.00%4100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.