* [PATCH] cmdline_parse_early: fix parse 'edd=' option
@ 2009-11-09 19:07 Eric Xiao
0 siblings, 0 replies; only message in thread
From: Eric Xiao @ 2009-11-09 19:07 UTC (permalink / raw)
To: keir.fraser; +Cc: Xiao Guangrong, xen-devel
if'edd='is default, it should decrease "opt_edd" not "opt_edid"
Signed-off-by: Xiao Guangrong <ericxiao.gr@gmail.com>
diff -r 42e268da38b9 -r f23b859e237a xen/arch/x86/boot/cmdline.S
--- a/xen/arch/x86/boot/cmdline.S Mon Nov 09 08:19:55 2009 +0000
+++ b/xen/arch/x86/boot/cmdline.S Tue Nov 10 02:34:16 2009 +0800
@@ -191,7 +191,7 @@
decb bootsym_phys(opt_edd) /* opt_edd=1: edd=skipmbr */
cmpw $0x6b73,(%eax) /* 0x6b73 == "sk" */
je .Lparse_edid
- decb bootsym_phys(opt_edid) /* opt_edd=0: edd=on (default) */
+ decb bootsym_phys(opt_edd) /* opt_edd=0: edd=on (default) */
.Lparse_edid:
/* Check for 'edid=' command-line option. */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-11-09 19:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-09 19:07 [PATCH] cmdline_parse_early: fix parse 'edd=' option Eric Xiao
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.