Release 4.14 arch/cris/include/asm/delay.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _CRIS_DELAY_H
#define _CRIS_DELAY_H
/*
* Copyright (C) 1998-2002 Axis Communications AB
*
* Delay routines, using a pre-computed "loops_per_second" value.
*/
#include <arch/delay.h>
/* Use only for very small delays ( < 1 msec). */
extern unsigned long loops_per_usec; /* arch/cris/mm/init.c */
/* May be defined by arch/delay.h. */
#ifndef udelay
static inline void udelay(unsigned long usecs)
{
__delay(usecs * loops_per_usec);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 16 | 88.89% | 1 | 50.00% |
Adrian Bunk | 2 | 11.11% | 1 | 50.00% |
Total | 18 | 100.00% | 2 | 100.00% |
#endif
#endif /* defined(_CRIS_DELAY_H) */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 34 | 75.56% | 3 | 37.50% |
Jesper Nilsson | 7 | 15.56% | 2 | 25.00% |
Adrian Bunk | 2 | 4.44% | 1 | 12.50% |
Mikael Starvik | 1 | 2.22% | 1 | 12.50% |
Greg Kroah-Hartman | 1 | 2.22% | 1 | 12.50% |
Total | 45 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.