Hi!

Used flashrom on an iWILL-DK8-HTX board again after a long time. There seems 
really to be a typo in
w83627hf_gpio24_raise_2e, at least for the iwill board. It should of course 
read 0x2e and not 0x2d...
I tested this only on a iwill board, though. No idea about the Agami Aruma... 
but I assume it's the same.
I attached the patch (trivial).

Regards,
Mondrian
-- 
 Dr. Mondrian Nuessle
 Phone: +49 621 181 2717          University of Heidelberg
 Fax:   +49 621 181 2713          Computer Architecture Group
 mailto:[email protected]         http://ra.ziti.uni-heidelberg.de
Fixed the typo should indeed be a 0x2e.
Tested on an iWILL DK8-HTX board.

Signed-off-by: Mondrian nuessle <[email protected]>

Index: flashrom/board_enable.c
===================================================================
--- flashrom/board_enable.c	(revision 4085)
+++ flashrom/board_enable.c	(working copy)
@@ -106,8 +106,7 @@
 
 static int w83627hf_gpio24_raise_2e(const char *name)
 {
-	/* TODO: Typo? Shouldn't this be 0x2e? */
-	return w83627hf_gpio24_raise(0x2d, name);
+	return w83627hf_gpio24_raise(0x2e, name);
 }
 
 /**
-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to