diff options
| author | Michael Brown | 2007-07-03 21:34:51 +0200 |
|---|---|---|
| committer | Michael Brown | 2007-07-03 21:34:51 +0200 |
| commit | fae10a7ca1ab1977b28e1ead5342953908dfd0a3 (patch) | |
| tree | 4c308d6c748bc818f55b8b2645ed84b86aa311ca /src/include | |
| parent | Move pxe_netdev and set_pxe_netdev to pxe_undi.c and remove (diff) | |
| download | ipxe-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/include')
| -rw-r--r-- | src/include/gpxe/init.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/gpxe/init.h b/src/include/gpxe/init.h index b13674ec7..b5e2f864f 100644 --- a/src/include/gpxe/init.h +++ b/src/include/gpxe/init.h @@ -30,7 +30,6 @@ struct init_fn { void ( *init ) ( void ); - void ( *reset ) ( void ); void ( *exit ) ( void ); }; @@ -44,18 +43,16 @@ struct init_fn { #define INIT_RPC 11 /* Macro for creating an initialisation function table entry */ -#define INIT_FN( init_order, init_func, reset_func, exit_func ) \ +#define INIT_FN( init_order, init_func, exit_func ) \ struct init_fn PREFIX_OBJECT(init_fn__) \ __table ( struct init_fn, init_fn, init_order ) = { \ .init = init_func, \ - .reset = reset_func, \ .exit = exit_func, \ }; /* Function prototypes */ void call_init_fns ( void ); -void call_reset_fns ( void ); void call_exit_fns ( void ); #endif /* _GPXE_INIT_H */ |
