Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
8
void mdelay(unsigned int msecs)
9
{
10
assert(msecs <= UINT_MAX / USECS_PER_MSEC);
11
return udelay(msecs * USECS_PER_MSEC);
12
}
13
14
void delay(unsigned int secs)
15
{
Callers
15
delay
Function · 0.70
mainboard_beep_and_blink_on_panic_once
Function · 0.50
panic
Function · 0.50
beep_and_blink
Function · 0.50
beep_and_blink
Function · 0.50
tas5825m_setup
Function · 0.50
tas5825m_setup
Function · 0.50
tas5825m_setup
Function · 0.50
tas5825m_setup
Function · 0.50
tas5825m_setup
Function · 0.50
tas5825m_setup
Function · 0.50
starlabs_touchpad_verify_haptics
Function · 0.50
Calls
1
udelay
Function · 0.70
Tested by
no test coverage detected