summaryrefslogtreecommitdiffstats
path: root/src/core/init.c
diff options
context:
space:
mode:
authorMichael Brown2007-07-03 21:34:51 +0200
committerMichael Brown2007-07-03 21:34:51 +0200
commitfae10a7ca1ab1977b28e1ead5342953908dfd0a3 (patch)
tree4c308d6c748bc818f55b8b2645ed84b86aa311ca /src/core/init.c
parentMove pxe_netdev and set_pxe_netdev to pxe_undi.c and remove (diff)
downloadipxe-fae10a7ca1ab1977b28e1ead5342953908dfd0a3.tar.gz
ipxe-fae10a7ca1ab1977b28e1ead5342953908dfd0a3.tar.xz
ipxe-fae10a7ca1ab1977b28e1ead5342953908dfd0a3.zip
We don't actually use the reset functions anywhere, and nothing really
provides them.
Diffstat (limited to 'src/core/init.c')
-rw-r--r--src/core/init.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/init.c b/src/core/init.c
index 66b428fe..61570fd1 100644
--- a/src/core/init.c
+++ b/src/core/init.c
@@ -23,15 +23,6 @@ void call_init_fns ( void ) {
}
}
-void call_reset_fns ( void ) {
- struct init_fn *init_fn;
-
- for ( init_fn = init_fns; init_fn < init_fns_end ; init_fn++ ) {
- if ( init_fn->reset )
- init_fn->reset ();
- }
-}
-
void call_exit_fns ( void ) {
struct init_fn *init_fn;