MCPcopy Create free account
hub / github.com/coreboot/coreboot / mdelay

Function mdelay

src/lib/delay.c:8–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6#include <timer.h>
7
8void mdelay(unsigned int msecs)
9{
10 assert(msecs <= UINT_MAX / USECS_PER_MSEC);
11 return udelay(msecs * USECS_PER_MSEC);
12}
13
14void delay(unsigned int secs)
15{

Callers 15

delayFunction · 0.70
panicFunction · 0.50
beep_and_blinkFunction · 0.50
beep_and_blinkFunction · 0.50
tas5825m_setupFunction · 0.50
tas5825m_setupFunction · 0.50
tas5825m_setupFunction · 0.50
tas5825m_setupFunction · 0.50
tas5825m_setupFunction · 0.50
tas5825m_setupFunction · 0.50

Calls 1

udelayFunction · 0.70

Tested by

no test coverage detected