We don't actually use the reset functions anywhere, and nothing really

provides them.
This commit is contained in:
Michael Brown
2007-07-03 20:34:51 +01:00
parent 5ce5e6d846
commit fae10a7ca1
10 changed files with 9 additions and 21 deletions

View File

@@ -85,6 +85,6 @@ void cpu_setup(void)
identify_cpu(&cpu_info);
}
INIT_FN ( INIT_CPU, cpu_setup, NULL, NULL );
INIT_FN ( INIT_CPU, cpu_setup, NULL );
#endif /* CONFIG_X86_64 */

View File

@@ -28,4 +28,4 @@ static void gdb_symbol_line ( void ) {
getkey();
}
INIT_FN ( INIT_GDBSYM, gdb_symbol_line, NULL, NULL );
INIT_FN ( INIT_GDBSYM, gdb_symbol_line, NULL );

View File

@@ -191,4 +191,4 @@ int timer2_running(void)
#endif /* RTC_CURRTICKS */
INIT_FN ( INIT_TIMERS, setup_timers, NULL, NULL );
INIT_FN ( INIT_TIMERS, setup_timers, NULL );

View File

@@ -99,4 +99,4 @@ struct console_driver vga_console __console_driver = {
.disabled = 1,
};
INIT_FN ( INIT_CONSOLE, video_init, NULL, NULL );
INIT_FN ( INIT_CONSOLE, video_init, NULL );