aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/lguest
diff options
context:
space:
mode:
authorAtsushi SAKAI <sakaia@jp.fujitsu.com>2009-01-16 20:39:14 +0900
committerRusty Russell <rusty@rustcorp.com.au>2009-01-30 11:34:10 +1030
commit72410af921cbc9018da388ca1ddf75880a033ac1 (patch)
tree982abebfcf114149c9ba81bb468a0dd3adf0376b /drivers/lguest
parentLinux 2.6.29-rc3 (diff)
downloadlinux-dev-72410af921cbc9018da388ca1ddf75880a033ac1.tar.xz
linux-dev-72410af921cbc9018da388ca1ddf75880a033ac1.zip
lguest: typos fix
3 points lguest_asm.S => i386_head.S LHCALL_BREAK => LHREQ_BREAK perferred => preferred Signed-off-by: Atsushi SAKAI <sakaia@jp.fujitsu.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/lguest')
-rw-r--r--drivers/lguest/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/lguest/core.c b/drivers/lguest/core.c
index 90663e01a56e..60156dfdc608 100644
--- a/drivers/lguest/core.c
+++ b/drivers/lguest/core.c
@@ -224,7 +224,7 @@ int run_guest(struct lg_cpu *cpu, unsigned long __user *user)
break;
/* If the Guest asked to be stopped, we sleep. The Guest's
- * clock timer or LHCALL_BREAK from the Waker will wake us. */
+ * clock timer or LHREQ_BREAK from the Waker will wake us. */
if (cpu->halted) {
set_current_state(TASK_INTERRUPTIBLE);
schedule();