Home
last modified time | relevance | path

Searched refs:HZSCALE (Results 1 – 2 of 2) sorted by relevance

/linux-4.4.14/arch/m68k/include/asm/
Ddelay.h54 #define HZSCALE (268435456 / (1000000 / HZ)) macro
57 __delay(((((u) * HZSCALE) >> 11) * (loops_per_jiffy >> 11)) >> 6)
115 #define HZSCALE (268435456 / (1000000 / HZ)) macro
117 #define ndelay(n) __delay(DIV_ROUND_UP((n) * ((((HZSCALE) >> 11) * (loops_per_jiffy >> 11)) >> 6), …
/linux-4.4.14/arch/blackfin/include/asm/
Ddelay.h31 #define HZSCALE (268435456 / (1000000/HZ)) macro
36 return (((scale * HZSCALE) >> 11) * (loops_per_jiffy >> 11)) >> 6; in __to_delay()