diff options
| author | Michael Brown | 2005-04-10 20:39:28 +0200 |
|---|---|---|
| committer | Michael Brown | 2005-04-10 20:39:28 +0200 |
| commit | 34a0b5f16f88332855c8570ba02768d25f545191 (patch) | |
| tree | 707b851c410fba35b993f27f7d42704d6c31a7cb /src/arch/i386/transitions | |
| parent | arch_initialise() is now sufficiently generic that we may as well just (diff) | |
| download | ipxe-34a0b5f16f88332855c8570ba02768d25f545191.tar.gz ipxe-34a0b5f16f88332855c8570ba02768d25f545191.tar.xz ipxe-34a0b5f16f88332855c8570ba02768d25f545191.zip | |
initialise() doesn't take regs
Diffstat (limited to 'src/arch/i386/transitions')
| -rw-r--r-- | src/arch/i386/transitions/librm_mgmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/i386/transitions/librm_mgmt.c b/src/arch/i386/transitions/librm_mgmt.c index f59941b2f..384fb6733 100644 --- a/src/arch/i386/transitions/librm_mgmt.c +++ b/src/arch/i386/transitions/librm_mgmt.c @@ -134,8 +134,8 @@ POST_RELOC_FN ( POST_RELOC_LIBRM, librm_post_reloc ); void initialise_via_librm ( struct i386_all_regs *regs ) { char *new_librm; - /* Hand off to arch_initialise() */ - initialise ( regs ); + /* Hand off to initialise() */ + initialise (); /* Uninstall current librm (i.e. the one that's part of the * original, pre-relocation Etherboot image). |
