Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
mcgrof
/
linker-tables
/
refs/heads/20160603-dev-v3
/
.
/
memory.c
blob: dbf1a85a4043fa3ce36ec4b558cbeb8283f1324d [
file
]
#include
<linux/kernel.h>
#include
<asm/x86_init_fn.h>
static
void
early_init_memory
(
void
)
{
pr_info
(
"Initializing memory ...\n"
);
sleep
(
1
);
pr_info
(
"Completed initializing memory !\n"
);
}
x86_init_early_all
(
early_init_memory
);