diff options
author | Jes Sorensen <jes@sgi.com> | 2007-10-21 21:03:32 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2007-10-23 01:49:52 -0400 |
commit | d612cde060a005c1effb13d0f665448a04ce5f67 (patch) | |
tree | e7d77ba966a7c1dad70433b23e6086a1b5e18159 /drivers/lguest/lg.h | |
parent | 511801dc31c095b2bfe3bf5c6a370dbe9b042a70 (diff) |
Move register setup into i386_core.c
Move setup_regs() to lguest_arch_setup_regs() in i386_core.c given
that this is very architecture specific.
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/lguest/lg.h')
-rw-r--r-- | drivers/lguest/lg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/lguest/lg.h b/drivers/lguest/lg.h index 00c869bd9f79..c2557cfd86c7 100644 --- a/drivers/lguest/lg.h +++ b/drivers/lguest/lg.h | |||
@@ -199,6 +199,7 @@ void lguest_arch_run_guest(struct lguest *lg); | |||
199 | void lguest_arch_handle_trap(struct lguest *lg); | 199 | void lguest_arch_handle_trap(struct lguest *lg); |
200 | int lguest_arch_init_hypercalls(struct lguest *lg); | 200 | int lguest_arch_init_hypercalls(struct lguest *lg); |
201 | int lguest_arch_do_hcall(struct lguest *lg, struct hcall_args *args); | 201 | int lguest_arch_do_hcall(struct lguest *lg, struct hcall_args *args); |
202 | void lguest_arch_setup_regs(struct lguest *lg, unsigned long start); | ||
202 | 203 | ||
203 | /* <arch>/switcher.S: */ | 204 | /* <arch>/switcher.S: */ |
204 | extern char start_switcher_text[], end_switcher_text[], switch_to_guest[]; | 205 | extern char start_switcher_text[], end_switcher_text[], switch_to_guest[]; |