Separated out initialisation functions from startup/shutdown functions.

This commit is contained in:
Michael Brown
2007-07-03 23:09:56 +01:00
parent a5f33ea283
commit 89349d7fad
23 changed files with 241 additions and 196 deletions

View File

@@ -99,4 +99,6 @@ struct console_driver vga_console __console_driver = {
.disabled = 1,
};
INIT_FN ( INIT_CONSOLE, video_init, NULL );
struct init_fn video_init_fn __init_fn ( INIT_EARLY ) = {
.initialise = video_init,
};