浏览代码

initialise() doesn't take regs

tags/v0.9.3
Michael Brown 20 年前
父节点
当前提交
34a0b5f16f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      src/arch/i386/transitions/librm_mgmt.c

+ 2
- 2
src/arch/i386/transitions/librm_mgmt.c 查看文件

134
 void initialise_via_librm ( struct i386_all_regs *regs ) {
134
 void initialise_via_librm ( struct i386_all_regs *regs ) {
135
 	char *new_librm;
135
 	char *new_librm;
136
 
136
 
137
-	/* Hand off to arch_initialise() */
138
-	initialise ( regs );
137
+	/* Hand off to initialise() */
138
+	initialise ();
139
 
139
 
140
 	/* Uninstall current librm (i.e. the one that's part of the
140
 	/* Uninstall current librm (i.e. the one that's part of the
141
 	 * original, pre-relocation Etherboot image).
141
 	 * original, pre-relocation Etherboot image).

正在加载...
取消
保存